Skip to content

Commit

Permalink
fix(#453): No need to cast as string
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronware committed Apr 14, 2024
1 parent 82e34e0 commit fc1ea97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function googleAuth(options: {
login_hint: options.login_hint,
prompt: options.prompt,
scope: options.scope,
state: (options.state as string) || newState,
state: options.state || newState,
code: c.req.query('code'),
token: {
token: c.req.query('access_token') as string,
Expand Down

0 comments on commit fc1ea97

Please sign in to comment.