From a068685d18e6618b483f49b9e7e206af6d1c6e2f Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Mon, 25 Nov 2024 16:33:36 +0100 Subject: [PATCH] fix type --- packages/browser/src/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/browser/src/helpers.ts b/packages/browser/src/helpers.ts index 3d354c5906bb..ca584ea1cad3 100644 --- a/packages/browser/src/helpers.ts +++ b/packages/browser/src/helpers.ts @@ -106,7 +106,7 @@ export function wrap( const sentryWrapped = function (this: unknown, ...args: unknown[]): unknown { try { // Also wrap arguments that are themselves functions - const wrappedArguments = args.map((arg) => wrap(arg, options)); + const wrappedArguments = args.map(arg => wrap(arg, options)); // Attempt to invoke user-land function // NOTE: If you are a Sentry user, and you are seeing this stack frame, it