From 84394ac78429f68217ae13d8ca47ed1c4152b717 Mon Sep 17 00:00:00 2001 From: arturovt Date: Wed, 18 Dec 2024 08:35:41 +0200 Subject: [PATCH] docs: update Sentry integration --- docs/recipes/integration-with-sentry.md | 8 -------- 1 file changed, 8 deletions(-) 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)) ] })