From dd40863a02964c7c1d857d0818111af8c119a6d5 Mon Sep 17 00:00:00 2001 From: Josh XT Date: Wed, 12 Jun 2024 21:50:48 -0400 Subject: [PATCH] replace ref --- components/Auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Auth.py b/components/Auth.py index 6b0ff60a..4baa2f6f 100644 --- a/components/Auth.py +++ b/components/Auth.py @@ -61,7 +61,7 @@ def google_sso_button(): response = requests.post( f"{auth_uri}/v1/oauth2/google", json={ - "code": st.session_state["code"], + "code": code, "referrer": magic_link_uri, }, )