refactor(useapplelogin): update redirect url

This commit is contained in:
Timothy Z. 2025-04-10 12:52:56 +03:00
parent a0fa5e2a92
commit d457db6f1e

View file

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