Skip to content

Commit

Permalink
fix(remix): Update documentation links to the new routes.
Browse files Browse the repository at this point in the history
  • Loading branch information
onurtemizkan committed Sep 27, 2023
1 parent 455fdaa commit fd08a4f
Showing 1 changed file with 3 additions and 3 deletions.
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 fd08a4f

Please sign in to comment.