From 50edda25576b0a6e8524cc37b45e35dbfb41d941 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 10 Apr 2025 20:45:51 +0300 Subject: [PATCH] fix(useapplelogin): use redirect uri for testing --- 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 b73cb4d09..29e385f45 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: 'https://www.stremio.com/login', + redirectURI: 'https://stremio.github.io/stremio-web/feat/example-apple-login/', state: 'signin', usePopup: true, });