Skip to content

Commit 0c3ff1d

Browse files
committed
Fix empty arguments on auth
1 parent d61aefe commit 0c3ff1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/core/src/integrations/supabase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ function instrumentAuthOperation(operation: AuthOperationFn, isAdmin = false): A
228228
},
229229
},
230230
span => {
231-
return Reflect.apply(target, thisArg, [])
231+
return Reflect.apply(target, thisArg, argumentsList)
232232
.then((res: unknown) => {
233233
if (res && typeof res === 'object' && 'error' in res && res.error) {
234234
span.setStatus({ code: SPAN_STATUS_ERROR });

0 commit comments

Comments
 (0)