Kyle Hubert
Kyle Hubert
Don't you want that to be per session? ```sql CREATE OR REPLACE FUNCTION test_login (user_email text, logout_first boolean = TRUE) RETURNS auth.users LANGUAGE plpgsql AS $$ DECLARE auth_user auth.users; BEGIN...
I also had need of this for testing RLS, and shortened it to the following, and tucked it in auth schema. Not sure if helpful to everyone. ```sql grant anon,...
Ah, good catch. That's why I threw in the `json_strip_nulls`; on second thought we should probably use `''%s''`; I changed my local version.
I got pretty frustrated not being able to debug Next.js. I didn't resolve it entirely, sorry all. However, I did notice that I can install a protocol handler for `webpack-internal`...
Oh hey, look at that, it was just because I had Sentry loaded and it causes duplicate source maps? Anyway, I removed Sentry (in fact, went back to a new...
I think after quite a bit of head scratching, I put all my ruminating in that next.js issue, that I came to the conclusion that React Devtools could close this...
Hello @altryne, this is happening because of the `visibilitychange` window event. I suppose inside the `SessionContextProvider` the `useEffect` for `onAuthStateChange` could check that the callback's session variable's access_token is different...
Hello, sorry for my delay this summer. I'm using `GNU Emacs 27.1`. I checked, and this still happens. I'm happy to help you reproduce this, what could I provide for...
Thanks! I can confirm that also fixes the views by changing the layout. I'm glad you are on the case. Let me know if I can help at all.
I concur, although I don't think it is boto's fault. Boto sets the ActionOnFailure parameter to the string passed in. If CANCEL_AND_WAIT is used, and the step is checked inside...