From 936d837aebccda9760fba8de8ec154a1bc41f531 Mon Sep 17 00:00:00 2001 From: Patryk Kalinowski Date: Fri, 23 Feb 2024 13:34:12 +0100 Subject: [PATCH] force https for apple redirect uri --- src/Login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Login.tsx b/src/Login.tsx index 26a390a..53d9953 100644 --- a/src/Login.tsx +++ b/src/Login.tsx @@ -51,7 +51,7 @@ function Login() { router.navigate('/') } - const appleRedirectUri = 'http://' + window.location.host + (window.location.host.includes("github.io") ? '/demo-waas-auth' : '') + const appleRedirectUri = 'https://' + window.location.host + (window.location.host.includes("github.io") ? '/demo-waas-auth' : '') const handleAppleLogin = async (response: { authorization: { id_token: string } }) => { const walletAddress = await sequence.signIn({ idToken: response.authorization.id_token,