Moriz Büsing
Moriz Büsing
Cool, thanks!
Same here, but with using webpack aliases.
@sam-gc Your solution works great, except for on Safari. I have tried different hacks to get the script to load when I actually need it (on sign in/sign up pages)...
I have this too, sometimes it's breaking the rest of the document. Disappears after scrolling around for a bit.
Would be great if you could make this work with SSR - when using next.js for example, I'm getting a "window is not defined" error. I can work around it...
I found this obscure workaround. One variant works on the server, the other on the client. ``` import * as CurrencyInputExports from 'react-currency-input-field' const CurrencyInput = 'default' in CurrencyInputExports.default ?...
I have the same problem. I'm doing it exactly as described in the documentation [here](https://nextjs.org/docs/app/api-reference/components/script#beforeinteractive) and getting hydration errors (and a linter warning). I feel like the docs should be...
I have the same issue. I made a reproduction repo here: https://github.com/buesing/supabase-auth-safari-repro It's really just plainly calling the `supabase.auth.signInWithOAuth` function on Safari. Would you mind taking a look @silentworks? Thanks...
@silentworks thanks for checking my repo. I just added the missing auth callback route, still getting the same error on Safari. As for other steps - I'm not sure what's...
I switched to the route handler flow for the time being, that works. However I'm still a bit confused whether this is the only way to do it, or if...