From d457db6f1e5d3a93e181a688e01706d42fd97c6c Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 10 Apr 2025 12:52:56 +0300 Subject: [PATCH] refactor(useapplelogin): update redirect url --- src/routes/Intro/useAppleLogin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Intro/useAppleLogin.ts b/src/routes/Intro/useAppleLogin.ts index d600f4c13..e6508df23 100644 --- a/src/routes/Intro/useAppleLogin.ts +++ b/src/routes/Intro/useAppleLogin.ts @@ -43,7 +43,7 @@ const useAppleLogin = (): [() => Promise, () => 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, });