Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Nov 25, 2024
1 parent b6f4f2d commit a068685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/browser/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function wrap<T extends WrappableFunction, NonFunction>(
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
Expand Down

0 comments on commit a068685

Please sign in to comment.