Skip to content

Commit

Permalink
fix(remix): Update documentation links to the new routes. (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
onurtemizkan authored Sep 27, 2023
1 parent 455fdaa commit 4d563e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions src/remix/remix-wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});
Expand All @@ -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);
}
});
Expand All @@ -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);
}
});
Expand Down

0 comments on commit 4d563e2

Please sign in to comment.