From 884801ea36cbc1b383edbabab2b59cf04bd7271a Mon Sep 17 00:00:00 2001 From: Krishna Prem <86138069+krizhnaa@users.noreply.github.com> Date: Thu, 15 Jan 2026 16:48:34 +0400 Subject: [PATCH] fix: update broken enterprise docs link from /Pro to /Paid-Offerings (#5471) ## Description Fixed broken documentation link in the air-gapped setup guide that was pointing to a non-existent `/Pro/#activation` page (returning 404). Updated to the correct `/Paid-Offerings/#activating-your-license` URL which returns 200 OK. ## Changes Made - Updated link in `frontend/src/core/data/useTranslatedToolRegistry.tsx` (line 838) - Changed from `https://docs.stirlingpdf.com/Pro/#activation` to `https://docs.stirlingpdf.com/Paid-Offerings/#activating-your-license` ## Testing - Verified old link returns 404 - Verified new link returns 200 and has activation section - Link now correctly points to the "Activating Your License" section of the Paid Offerings documentation ## Related Issue Resolves #5088 ## Checklist - [x] Code follows project style guidelines - [x] Changes are limited to fixing the broken link only (atomic commit) - [x] Link has been manually tested and verified working --- frontend/src/core/data/useTranslatedToolRegistry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/core/data/useTranslatedToolRegistry.tsx b/frontend/src/core/data/useTranslatedToolRegistry.tsx index ee142099b..4a5b2466e 100644 --- a/frontend/src/core/data/useTranslatedToolRegistry.tsx +++ b/frontend/src/core/data/useTranslatedToolRegistry.tsx @@ -835,7 +835,7 @@ export function useTranslatedToolCatalog(): TranslatedToolCatalog { description: t("home.devAirgapped.desc", "Link to air-gapped setup guide"), categoryId: ToolCategoryId.ADVANCED_TOOLS, subcategoryId: SubcategoryId.DEVELOPER_TOOLS, - link: "https://docs.stirlingpdf.com/Pro/#activation", + link: "https://docs.stirlingpdf.com/Paid-Offerings/#activating-your-license", synonyms: getSynonyms(t, "devAirgapped"), supportsAutomate: false, automationSettings: null