Jason Creviston
Jason Creviston
I'm finally catching up to what's happening lol. The options object is optional. However, once you declare the object, `cookies` is required. Now it makes sense why this is throwing...
The workaround is to pass the `cookies` option as well.
One of the places I found this error is when calling getSession, it sees the session as expired, then calls the gotrue api to try and refresh the session. Part...
> What should I look here? Whenever I get the error, I try to find a refresh token that matches the current token? Yes What's the timeframe between when a...
If you create your own storage, you can pass that into your config. ```js import { defineNuxtConfig } from 'nuxt' export default defineNuxtConfig({ // ... supabase: { client: { auth:...
@dts well that stinks. That's a good reason why they should have the dev create the client - even if it's via a library-provided function. Then you can pass in...
Well, I thought other auth helpers used to support custom storage. Maybe it was only the storageKey. The SvelteKit one doesn't support either these, so I was wrong.
I'd like to point out that even though this change is how it should work, it's actually going to cause more console warnings when there's no logged-in user. Because `result.error`...
After doing a lot of testing, I have two suggestions and one observation. Hopefully they're not ridiculous and a waste of your time. 1. Also change the corresponding check in...
@wiesson, there are no official examples which don't log the warning when using SvelteKit. @scosman, yeah, bit of a mess right now, but I doubt they're going to introduce a...