Kristen Wilde
Kristen Wilde
I had this issue as well, but a few changes to the css fixed it. If I remember correctly, the important things were: - Don't set the overflow property of...
I'm experiencing this issue too. @FernandVEYRIER @innowhat - How can I use your `response_mode` workaround? Would I need to fork the repo and then edit [packages/next-auth/src/providers/apple.ts](https://github.com/nextauthjs/next-auth/blob/a72f1b6d21da89b4223542006c865862635c027b/packages/next-auth/src/providers/apple.ts)?
Thanks @FernandVEYRIER and @innowhat! I am using an older version of next-auth, but it was easy to change the `response_mode` and remove the `scope` in the Providers.Apple config. ``` Providers.Apple({...
We got the Apple redirect working by changing the cookie config for the callbackUrl. `sameSite: 'lax'` was a problem so we added this to our config: ``` cookies: { callbackUrl:...
I get this error quite often as well. I really have no idea why - I suspect it may have something to do with the fact that we update the...
Alternatively, you can also add custom content to the buttons using the props `previousMonthButtonLabel` and `nextMonthButtonLabel`. You'll also need to adjust the css for those buttons because the default "icons"...
Would love to see this feature added.