Skip to content

Commit

Permalink
fix startup test
Browse files Browse the repository at this point in the history
  • Loading branch information
rodja committed Jun 19, 2024
1 parent 8ef28c7 commit 1b914f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/google-one-tap-auth/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# https://developers.google.com/identity/gsi/web/guides/get-google-api-clientid#get_your_google_api_client_id
# and pass it as an environment variable (or write it to an .env file)
load_dotenv()
GOOGLE_CLIENT_ID = os.environ['GOOGLE_CLIENT_ID']
GOOGLE_CLIENT_ID = os.environ.get('GOOGLE_CLIENT_ID', '')


@ui.page('/')
Expand Down

0 comments on commit 1b914f2

Please sign in to comment.