Skip to content

Commit 59f6a65

Browse files
committed
Fix lint errors more.
1 parent 1fb8f65 commit 59f6a65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/providers/https.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ function wrapOnCallHandler<Req = any, Res = any>(
808808
}
809809
// For some reason the type system isn't picking up that the handler
810810
// is a one argument function.
811-
result = await (handler as v2CallableHandler<Req, Res>)(arg, responseProxy);
811+
result = await (handler as any)(arg, responseProxy);
812812
}
813813

814814
// Encode the result as JSON to preserve types like Dates.

0 commit comments

Comments
 (0)