From fd08a4fd58bfeec59808b44814e178a61f1d22b3 Mon Sep 17 00:00:00 2001 From: Onur Temizkan Date: Wed, 27 Sep 2023 14:57:32 +0100 Subject: [PATCH] fix(remix): Update documentation links to the new routes. --- src/remix/remix-wizard.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/remix/remix-wizard.ts b/src/remix/remix-wizard.ts index e9464675..6f922503 100644 --- a/src/remix/remix-wizard.ts +++ b/src/remix/remix-wizard.ts @@ -88,7 +88,7 @@ async function runRemixWizardWithTelemetry( await instrumentRootRoute(isV2, isTS); } catch (e) { clack.log.warn(`Could not instrument root route. - Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/`); + Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/manual-setup/`); debug(e); } }); @@ -98,7 +98,7 @@ async function runRemixWizardWithTelemetry( await initializeSentryOnEntryClient(dsn, isTS); } catch (e) { clack.log.warn(`Could not initialize Sentry on client entry. - Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/`); + Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/manual-setup/`); debug(e); } }); @@ -108,7 +108,7 @@ async function runRemixWizardWithTelemetry( await initializeSentryOnEntryServer(dsn, isV2, isTS); } catch (e) { clack.log.warn(`Could not initialize Sentry on server entry. - Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/`); + Please do it manually using instructions from https://docs.sentry.io/platforms/javascript/guides/remix/manual-setup/`); debug(e); } });