From 200d3a76d8628f073a77a33e6a29139d90beb20b Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 10 Apr 2025 14:20:23 +0300 Subject: [PATCH] fix(useapplelogin): use correct client id --- 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 e6508df23..5ecb88c98 100644 --- a/src/routes/Intro/useAppleLogin.ts +++ b/src/routes/Intro/useAppleLogin.ts @@ -21,7 +21,7 @@ type AppleSignInResponse = { }; }; -const CLIENT_ID = 'com.stremio.one'; +const CLIENT_ID = 'com.stremio.services'; const useAppleLogin = (): [() => Promise, () => void] => { const started = useRef(false);