From b9d2635f99bd2b9d488b86afb0be8270361c7455 Mon Sep 17 00:00:00 2001 From: Carter Date: Fri, 18 Jul 2025 15:05:49 -0600 Subject: [PATCH] using hostname instead of url --- 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 9138061..4b49e5d 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 + "/signupCallback" + options.authorizationParams.redirect_uri = url.hostname + "/signupCallback" console.log(options.authorizationParams.redirect_uri) loginWithRedirect(options)