Hi! I'm using `@supbase/supabase-js` and trying to...
# help
j
Hi! I'm using
@supbase/supabase-js
and trying to use the
redirectTo
on
signUp
and it's not working. I'm not sure I understand why:
Copy code
const {
          error: e,
          user,
          session,
        } = await supabase.auth.signUp(
          { email, password },
          { redirectTo: 'http://localhost:3000/access' }
        );
I have this URL added in my Auth settings as well.
s
You must have this full path set in your additional url field in the dashboard
j
Yeah I’ve copied the exact same URL over there as well and it’s not working for me.
s
I'm not sure why this is as its working on my end. Can you just double check you are copying it into the correct project? I currently have this working in a project I'm working on right now.