https://ksr.test/loginI am experiencing an issue when developing against Sign in With Apple locally.
I have configured a publicly accessible, HTTPS connection to my local machine via ngrok. I specified the domain in Apple's Service ID setting as the ngrok URL.
I am using the JS SDK to render the sign in with apple modal on my web page.
When going through the sign up modal flow, I am able to
1. enter my credentials
2. complete the 2FA step
3 choose to use a relay id email
However, as soon as I hit "Continue" on the relay email screen in the modal, I see a loader for a few seconds, and then the loader goes away and the modal does not close. I am able to hit the "Continue" button again, and the same thing happens (loader appears for a few secs, and then disappears, without closing the modal).
I am currently calling logging out the callback response in my web apps document listener:
```
document.addEventListener('AppleIDSignInOnSuccess', (data) => {
console.log(data)
});
```
and I don't see any data being logged, as the modal is still open.
Any ideas on what could be happening?