diff --git a/docs/recipes/integration-with-sentry.md b/docs/recipes/integration-with-sentry.md index 54e3b8051..f3485051b 100644 --- a/docs/recipes/integration-with-sentry.md +++ b/docs/recipes/integration-with-sentry.md @@ -22,10 +22,6 @@ export const appConfig: ApplicationConfig = { provide: ErrorHandler, useValue: Sentry.createErrorHandler() }, - { - provide: Sentry.TraceService, - deps: [Router] - }, provideAppInitializer(() => inject(Sentry.TraceService)) ] }; @@ -39,10 +35,6 @@ export const appConfig: ApplicationConfig = { provide: ErrorHandler, useValue: Sentry.createErrorHandler() }, - { - provide: Sentry.TraceService, - deps: [Router] - }, provideAppInitializer(() => inject(Sentry.TraceService)) ] })