@@ -36,7 +36,7 @@ Customizable authentication UI component with custom themes and extensible style
3636 - [ Social Providers] ( #social-providers )
3737 - [ Options] ( #options )
3838 - [ Supported Views] ( #supported-views )
39- - [ Anonymous User ] ( #anonymous-user )
39+ - [ Anonymous Sign-ins ] ( #anonymous-sign-ins )
4040 - [ Customization] ( #customization )
4141 - [ Predefined themes] ( #predefined-themes )
4242 - [ Switch theme variations] ( #switch-theme-variations )
@@ -210,6 +210,7 @@ The Auth component is currently shipped with the following views:
210210- [ Social Login] ( https://supabase.com/docs/guides/auth/social-login )
211211- [ Update password] ( https://supabase.com/docs/guides/auth/auth-password-reset#update-password )
212212- [ Forgotten password] ( https://supabase.com/docs/guides/auth/auth-password-reset#sending-password-reset-email )
213+ - [ Anonymous Sign-ins] ( https://supabase.com/docs/guides/auth/auth-anonymous )
213214
214215``` html
215216<template >
@@ -232,10 +233,11 @@ const redirectTo = computed(() => {
232233 </script >
233234
234235```
235- ### Anonymous User
236+
237+ ### Anonymous Sign-ins
236238
237239The Auth component is currently support [ Anonymous user login] ( https://supabase.com/docs/guides/auth/auth-anonymous#sign-in-anonymously ) .
238- For this you need to create an anonymous user
240+ For this you need to create an anonymous user
239241
240242``` js
241243const { data , error } = await supabase .auth .signInAnonymously ()
@@ -244,8 +246,7 @@ const { data, error } = await supabase.auth.signInAnonymously()
244246[ Enable manual linking] ( https://supabase.com/dashboard/project/_/settings/auth ) in supabase
245247
246248Currently works for magic link and social login.
247- If you use password login, you need user to update password after he
248-
249+ If you use password login, you need user to update password after he
249250
250251## Customization
251252
0 commit comments