Skip to content

Commit

Permalink
more debugging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jun 13, 2024
1 parent a94b932 commit 6e6ad66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/Auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ def google_sso_button():
},
)

st.write(
f"Response status: {response.status_code}"
) # Debug message
st.write(f"Response content: {response.json()}") # Debug message

if response.status_code == 200:
data = response.json()
if "detail" in data:
Expand Down

0 comments on commit 6e6ad66

Please sign in to comment.