-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
docs: Fix Solid, SolidStart, and NestJS README snippets #24571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,7 @@ Sentry.init({ | |
| tracesSampleRate: 1.0, // Capture 100% of the transactions | ||
| }); | ||
|
|
||
| const SentryRouter = Sentry.withSentryRouterRouting(Router); | ||
| const SentryRouter = withSentryRouterRouting(Router); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixUpdate the README example to call Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
|
|
||
| render( | ||
| () => ( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: The
@sentry/nestjsREADME example incorrectly importsMonitorConfigfrom@sentry/nestjs, which will cause a TypeScript compilation error.Severity: MEDIUM
Suggested Fix
Remove
MonitorConfigfrom the import statement from'@sentry/nestjs'. The correct type import from'@sentry/core'is already included in the code snippet.Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.