We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70099b commit 12b8e1cCopy full SHA for 12b8e1c
1 file changed
packages/opencode/src/provider/auth.ts
@@ -33,7 +33,8 @@ export namespace ProviderAuth {
33
method: z.number(),
34
inputs: z.record(z.string(), z.string()).optional(),
35
}),
36
- async (input): Promise<Authorization | undefined> => runPromiseInstance(S.Service.use((svc) => svc.authorize(input))),
+ async (input): Promise<Authorization | undefined> =>
37
+ runPromiseInstance(S.Service.use((svc) => svc.authorize(input))),
38
)
39
40
export const callback = fn(
0 commit comments