Ian Ownbey

Results 16 comments of Ian Ownbey

Ah I see #303 is really where the discussion on this is happening.

To try to make it a bit easier to understand whats going on I changed the middleware to be: ``` if (!request.nextUrl.pathname.startsWith("/_next") && !request.nextUrl.pathname.startsWith("/favicon")) { console.log({path: request.nextUrl.pathname}) const { supabase,...

Ok I am 99% sure that the cookie set middleware client code just does not work.

Ok I figured out the bug, the middleware uses assigning as if javascript had pointers or something. Instead it needs to do something like this: ``` export const createClient =...

Ah yeah sorry, I mean the middleware code described in the docs. Seems like you wrote your own