Skip to content

Commit b0d1b93

Browse files
authored
Update auth-google.mdx (supabase#37484)
Update Google auth to use rememberSignInWithGoogle (compose-auth v3.2.2) line 715 - Matches `compose-auth` library documentation for version 3.2.2
1 parent a8b254f commit b0d1b93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/docs/content/guides/auth/social-login/auth-google.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ val supabaseClient = createSupabaseClient(
712712
**Use the Compose Auth plugin in your Auth Screen**
713713

714714
```kotlin
715-
val authState = supabaseClient.composeAuth.rememberLoginWithGoogle(
715+
val authState = supabaseClient.composeAuth.rememberSignInWithGoogle(
716716
onResult = {
717717
when(it) { //handle errors
718718
NativeSignInResult.ClosedByUser -> TODO()

0 commit comments

Comments
 (0)