Correct redirect url when calling generateLink

I'm calling generateLink on user signup like this:

const { data, error } = await adminClient.generateLink({
    type: 'signup',
    email,
    password,
    options: { data: { username: username }, redirectTo: '/verify' }
});


But in the response I don't get the 'verify' party, only
    redirect_to: 'http://localhost:5173',


I've added the url to the config.toml file and restarted the emulators but it still redirects to the blank url
Was this page helpful?