signInWithOtp always redirects to localhost3000

I have configured Site URL to http://localhost:5173 and Redirect urls to http://localhost:5173/**

When I call signInWithOtp the email always has localhost:3000 instead
const { error } = await supabaseClient.auth.signInWithOtp({
    email,
    options: {
        emailRedirectTo: `${url.origin}/logging-in`
    }
});
image.png
Was this page helpful?