Skip to content

Commit

Permalink
fix: Edit setAuthCookies parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
kmjennison committed Dec 31, 2023
1 parent 2c6edfe commit 75682ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setAuthCookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { NextApiRequest, NextApiResponse } from 'next'
export type SetAuthCookies = (
req: NextApiRequest,
res: NextApiResponse,
options: { token?: string }
options?: { token?: string }
) => Promise<{
idToken: string | null
refreshToken: string | null
Expand Down

0 comments on commit 75682ab

Please sign in to comment.