lumenwrites
lumenwrites
I'm seeing the same issue after upgrading my npm packages. Did you find the solution?
@burggraf You mean adding something like this in my `AuthContext`? ```javascript useEffect(() => { [...] supabaseClient.auth.onAuthStateChange(async (event, session) => { // First render after sign in fix if (event ===...
Okay, so infinite redirect loop was happening because after you've authenticated, supabase redirects you back to your website, and passes an `access_token` as parameter into the url, so the function...
@silentworks Just made my own version of this project, to demonstrate the issue: https://github.com/lumenwrites/supabase-examples-nextjs All the changes I've made are here: https://github.com/lumenwrites/supabase-examples-nextjs/blob/main/pages/index.tsx The only difference is that I'm fetching the...
@silentworks > My current workaround for this is to add a loading page before redirecting to the logged-in view Unfortunately, I don't think it'll work for me, because it's important...
Hmm... Looks like this is triggered when an axios request throws any kind of error. So this line triggers it: ``` await axios.post("123", {}) ``` Very weird and unexpected. If...
I'd really love this feature too.
Hey guys! I really need to use javascript to take a "screenshot" of a div with a box shadow and border radius. Do you know if there are any possible...
Hi! Thank you, I'm glad you've liked it. You can find the prebuilt files here: Linux: https://nulis.io/downloads/Nulis-linux-x64.zip Mac: https://nulis.io/downloads/Nulis-darwin-x64.zip Windows: https://nulis.io/downloads/Nulis-win32-x64.zip Note that Desktop is in a very early version,...
Actually, docker is by far the easiest way to launch it, all it takes is ``` docker-compose up ``` Or, if you have node/npm installed, you could also do `npm...