fix(useapplelogin): use redirect uri for testing

This commit is contained in:
Timothy Z. 2025-04-10 20:45:51 +03:00
parent a1acb7423a
commit 50edda2557

View file

@ -43,7 +43,7 @@ const useAppleLogin = (): [() => Promise<AppleLoginResponse>, () => void] => {
window.AppleID.auth.init({
clientId: CLIENT_ID,
scope: 'name email',
redirectURI: 'https://www.stremio.com/login',
redirectURI: 'https://stremio.github.io/stremio-web/feat/example-apple-login/',
state: 'signin',
usePopup: true,
});