fix(useapplelogin): use correct client id

This commit is contained in:
Timothy Z. 2025-04-10 14:20:23 +03:00
parent d457db6f1e
commit 200d3a76d8

View file

@ -21,7 +21,7 @@ type AppleSignInResponse = {
};
};
const CLIENT_ID = 'com.stremio.one';
const CLIENT_ID = 'com.stremio.services';
const useAppleLogin = (): [() => Promise<AppleLoginResponse>, () => void] => {
const started = useRef(false);