diff --git a/CHANGELOG.md b/CHANGELOG.md index d78cedd6..c6edb097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ ## Unreleased -fix(remix): Use captureRemixServerException inside handleError. (#466) -fix(remix): Fix `request` arg in `handleError` template. (#469) +fix(remix): Use captureRemixServerException inside handleError (#466) +fix(remix): Fix `request` arg in `handleError` template (#469) +fix(remix): Update documentation links to the new routes (#470) ## 3.14.1 ref(sveltekit): Add log for successful Vite plugin insertion (#465) 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); } });