Browse Source

chore(settings): fix outdated url to CLI docs (#80976)

Simon Hellmayr 3 months ago
parent
commit
a2b1e017d5

+ 1 - 1
static/app/components/repositoryEditForm.tsx

@@ -58,7 +58,7 @@ function RepositoryEditForm({
           'Changing the [name:repo name] may have consequences if it no longer matches the repo name used when [link:sending commits with releases].',
           {
             link: (
-              <ExternalLink href="https://docs.sentry.io/product/cli/releases/#sentry-cli-commit-integration" />
+              <ExternalLink href="https://docs.sentry.io/cli/releases/#sentry-cli-commit-integration" />
             ),
             name: <strong>repo name</strong>,
           }

+ 1 - 3
static/app/views/monitors/components/quickStartEntries.tsx

@@ -109,9 +109,7 @@ sentry-cli monitors run ${slug} -- python path/to/file`;
         {tct(
           'Make sure to [installLink:install the Sentry CLI] (min v2.16.1), then instrument your monitor:',
           {
-            installLink: (
-              <ExternalLink href="https://docs.sentry.io/product/cli/installation/" />
-            ),
+            installLink: <ExternalLink href="https://docs.sentry.io/cli/installation/" />,
           }
         )}
       </div>

+ 1 - 1
static/app/views/settings/settingsIndex.tsx

@@ -30,7 +30,7 @@ const LINKS = {
   DOCUMENTATION: 'https://docs.sentry.io/',
   DOCUMENTATION_PLATFORMS: 'https://docs.sentry.io/platforms/',
   DOCUMENTATION_QUICKSTART: 'https://docs.sentry.io/platform-redirect/?next=/',
-  DOCUMENTATION_CLI: 'https://docs.sentry.io/product/cli/',
+  DOCUMENTATION_CLI: 'https://docs.sentry.io/cli/',
   DOCUMENTATION_API: 'https://docs.sentry.io/api/',
   API: '/settings/account/api/',
   MANAGE: '/manage/',