From 93f0f6f980a8a7c7437dde7df1ed9559d813e4eb Mon Sep 17 00:00:00 2001 From: Jonas Date: Tue, 18 Jun 2024 14:59:07 -0400 Subject: [PATCH] Update src/instrument.ts Co-authored-by: Abhijeet Prasad --- src/instrument.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instrument.ts b/src/instrument.ts index 52d81a1..c73d8e6 100644 --- a/src/instrument.ts +++ b/src/instrument.ts @@ -12,7 +12,7 @@ const client = Sentry.getClient(); if (client) { const profilingIntegration = client.getIntegrationByName("ProfilingIntegration"); - if(profilingIntegration) { + if (profilingIntegration) { // @ts-expect-error this is purposefuly not exposed by the SDK for now profilingIntegration._profiler.start(); }