We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ff303 commit 4d29678Copy full SHA for 4d29678
apps/array/src/renderer/features/auth/stores/authStore.ts
@@ -4,6 +4,7 @@ import { electronStorage } from "@renderer/lib/electronStorage";
4
import { logger } from "@renderer/lib/logger";
5
import { queryClient } from "@renderer/lib/queryClient";
6
import type { CloudRegion } from "@shared/types/oauth";
7
+import { useNavigationStore } from "@stores/navigationStore";
8
import { create } from "zustand";
9
import { persist } from "zustand/middleware";
10
import {
@@ -369,6 +370,8 @@ export const useAuthStore = create<AuthState>()(
369
370
371
queryClient.clear();
372
373
+ useNavigationStore.getState().navigateToTaskInput();
374
+
375
set({
376
oauthAccessToken: null,
377
oauthRefreshToken: null,
0 commit comments