© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3w ago•
2 replies
Floppy Disk

Not getting error `User already registered` when using `await supabase.auth.signUp`

authSolved🟡javascript
So my snippet is as follows:
export const signUp = async (email: string, password: string, first_name: string, last_name: string) => {
    return await supabase.auth.signUp({
        email: email,
        password: password,
        options: {
            data: {
                first_name,
                last_name,
            },
            emailRedirectTo: getUrl(),
        },
    })
}
export const signUp = async (email: string, password: string, first_name: string, last_name: string) => {
    return await supabase.auth.signUp({
        email: email,
        password: password,
        options: {
            data: {
                first_name,
                last_name,
            },
            emailRedirectTo: getUrl(),
        },
    })
}

And I have only
Confirm Email
Confirm Email
set up, without
Confirm Phone
Confirm Phone
. I remembed it working but I might be wrong
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

supabase {session: null, user: null } error using supabase auth signup api?
SupabaseSSupabase / help-and-questions
8mo ago
504 error when using supabase auth
SupabaseSSupabase / help-and-questions
6mo ago
Supabase Auth signup failing: “Failed to create user: Database error creating new user”
SupabaseSSupabase / help-and-questions
7d ago
Not getting user exists error when creating user whose email is already there.
SupabaseSSupabase / help-and-questions
6mo ago