aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/GoogleAuthenticationManager.tsx
diff options
context:
space:
mode:
authorSkitty1238 <157652284+Skitty1238@users.noreply.github.com>2025-06-05 11:25:20 -0400
committerSkitty1238 <157652284+Skitty1238@users.noreply.github.com>2025-06-05 11:25:20 -0400
commit87bd169df4a4384e41b32b3252b3b3c6618f4510 (patch)
tree16439af5a9759e8d7c8ce4fe02fb70725ef26dd6 /src/client/apis/GoogleAuthenticationManager.tsx
parentc86bf5cc03d6fa59fbc11118d4e743d4c3064697 (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.tsx2
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;
}