From 463de190de55f55005dec51764d2972b6c86f2bd Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Tue, 30 Dec 2025 11:12:11 -0800 Subject: [PATCH] Add color-scheme and itp_support fixes for Google sign-in button --- static/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/app.js b/static/app.js index a0fa328..bc27dfa 100644 --- a/static/app.js +++ b/static/app.js @@ -63,11 +63,13 @@ export async function auth() { const signin = document.getElementById('signin'); signin.style.display = 'flex'; + signin.style.colorScheme = 'light'; document.body.style.opacity = 1; profile = await new Promise((resolve) => { google.accounts.id.initialize({ client_id: CLIENT_ID, + itp_support: true, callback: async (response) => { const res = await fetch('/auth/google/callback', { method: 'POST',