I'm trying to go to my home screen WITH a session after clicking the confirmation link, but it sends me to the home screen without a session
The user is experiencing an issue where clicking the email confirmation link redirects them to the home screen without maintaining a session. They are seeking help to ensure the session persists after confirmation.
I think it would be difficult to say what the issue is without some more information. What does the confirmation url in the email look like if you inspect it , does it have the expected format of https://project-ref.supabase.co/auth/v1/verify?token={{ .TokenHash }}&type=email&redirect_to=https://example.com/path Is the user actually getting confirmed when you click the link or is it failing even before then (you can check the auth table for this) After it redirects to your home page are you seeing accces_token refresh_token showing up even if briefly (are these values saved in local storage)? If you check the auth logs are you seeing any errors? Also any details about tech stack (NextJS, SvelteKit) etc would be helpful to know as would code snippets of your client side