From 84ed63a7659d4de5c67f2e27c3c7e7b35aac067e Mon Sep 17 00:00:00 2001 From: Carter Date: Fri, 18 Jul 2025 15:28:41 -0600 Subject: [PATCH] added https:// to the hostname to make a valid uri --- src/providers/auth.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/auth.tsx b/src/providers/auth.tsx index 4b49e5d..bc116ff 100644 --- a/src/providers/auth.tsx +++ b/src/providers/auth.tsx @@ -38,7 +38,7 @@ export default function AuthWrapper(props: Props) { options.authorizationParams.login_hint = parsed.email.toString(); // prefill email } - options.authorizationParams.redirect_uri = url.hostname + "/signupCallback" + options.authorizationParams.redirect_uri = "https://" + url.hostname + "/signupCallback" console.log(options.authorizationParams.redirect_uri) loginWithRedirect(options)