diff options
author | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 11:25:20 -0400 |
---|---|---|
committer | Skitty1238 <157652284+Skitty1238@users.noreply.github.com> | 2025-06-05 11:25:20 -0400 |
commit | 87bd169df4a4384e41b32b3252b3b3c6618f4510 (patch) | |
tree | 16439af5a9759e8d7c8ce4fe02fb70725ef26dd6 /src/client/apis/GoogleAuthenticationManager.tsx | |
parent | c86bf5cc03d6fa59fbc11118d4e743d4c3064697 (diff) |
fixed being able to add tasks to Google Tasks. Cleaned up google authorization button clicks + alerts
Diffstat (limited to 'src/client/apis/GoogleAuthenticationManager.tsx')
-rw-r--r-- | src/client/apis/GoogleAuthenticationManager.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/apis/GoogleAuthenticationManager.tsx b/src/client/apis/GoogleAuthenticationManager.tsx index 70e1ccc05..23e658329 100644 --- a/src/client/apis/GoogleAuthenticationManager.tsx +++ b/src/client/apis/GoogleAuthenticationManager.tsx @@ -101,7 +101,7 @@ export class GoogleAuthenticationManager extends ObservableReactComponent<object console.warn('Not linked yet or invalid JSON. open auth...'); // This is an auth URL — redirect the user to /refreshGoogle if (typeof response === 'string' && response.startsWith('http')) { - if (window.confirm('Authorize Dash to access your Google tasks?')) { + if (window.confirm('Authorize Dash to access your Google account?')) { window.open(response)?.focus(); return undefined; } |