Skip to content

Commit 7b3bd9c

Browse files
Fix type on README.md (#194)
1 parent 472ace3 commit 7b3bd9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const GET = handleAuth({ returnPathname: '/dashboard' });
8383
If your application needs to persist data upon a successful authentication, like the `oauthTokens` from an upstream provider, you can pass in a `onSuccess` function that will get called after the user has successfully authenticated:
8484

8585
```ts
86-
export const GET = handleAUth({
86+
export const GET = handleAuth({
8787
onSuccess: async ({ oauthTokens }) => {
8888
await saveTokens(oauthTokens);
8989
},

0 commit comments

Comments
 (0)