test: do not use popup

This commit is contained in:
Timothy Z. 2025-04-24 13:04:12 +03:00
parent 1b43484013
commit fb7c5642b0
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ const useAppleLogin = (): [() => Promise<AppleLoginResponse>, () => void] => {
scope: 'name email',
redirectURI: 'https://web.stremio.com/',
state: 'signin',
usePopup: true,
// usePopup: true,
});
window.AppleID.auth.signIn().then((response: AppleSignInResponse) => {

View file

@ -34,7 +34,7 @@ declare global {
scope: string;
redirectURI: string;
state: string;
usePopup: boolean;
// usePopup: boolean;
}) => void;
signIn: () => Promise<{
authorization: {