refactor(useapplelogin): use correct url

This commit is contained in:
Timothy Z. 2025-04-24 16:49:01 +03:00
parent d09c760a1c
commit 1568ba1bb2

View file

@ -11,7 +11,7 @@ type AppleLoginResponse = {
name: string;
};
const STREMIO_URL = 'http://localhost:3001';
const STREMIO_URL = 'https://www.strem.io';
const MAX_TRIES = 25;
const getCredentials = async (state: string): Promise<AppleLoginResponse> => {