From 670ead0e5122dc32a84c87bb9facf5ab357b590a Mon Sep 17 00:00:00 2001 From: Can Rau Date: Thu, 5 Feb 2026 13:00:46 -0500 Subject: [PATCH] docs: fix typo in verify function --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd3f441..b84e2a8 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ const googleStrategy = new GoogleStrategy( clientSecret: 'YOUR_CLIENT_SECRET', redirectURI: 'https://example.com/auth/google/callback', }, - async ({ accessToken, tokens }) => { + async ({ request, tokens }) => { // Get the user data from your DB or API using the tokens and profile const profile = await GoogleStrategy.userProfile(tokens) return User.findOrCreate({ email: profile.emails[0].value })