From cb5894a100246f4e07da3b22a0ce59030227df1e Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Thu, 17 Jul 2025 18:25:44 -0700 Subject: [PATCH] Enable sentry integrations. --- src/main.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index d278f816d..0eb173d90 100644 --- a/src/main.ts +++ b/src/main.ts @@ -36,11 +36,8 @@ Sentry.init({ dsn: __SENTRY_DSN__, enabled: __SENTRY_ENABLED__, release: __COMFYUI_FRONTEND_VERSION__, - integrations: [], - autoSessionTracking: false, - defaultIntegrations: false, normalizeDepth: 8, - tracesSampleRate: 0 + tracesSampleRate: 1.0 }) app.directive('tooltip', Tooltip) app