Skip to content

Commit

Permalink
Add fallback empty string for GOOGLE_CLIENT_ID
Browse files Browse the repository at this point in the history
  • Loading branch information
masenf committed Oct 25, 2023
1 parent 3e6b131 commit 4b10923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google_auth/google_auth/google_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .react_oauth_google import GoogleOAuthProvider, GoogleLogin

CLIENT_ID = os.environ.get("GOOGLE_CLIENT_ID")
CLIENT_ID = os.environ.get("GOOGLE_CLIENT_ID", "")


class State(rx.State):
Expand Down

0 comments on commit 4b10923

Please sign in to comment.