feat(auth): add accessToken field to the store

This commit is contained in:
Ilia Mashkov
2026-03-18 09:57:59 +03:00
parent 2afbd73a31
commit 51fc64d8c3

View File

@@ -77,6 +77,7 @@ export const useAuthStore = create<AuthStore>()((set) => ({
set({ set({
status: "unauthenticated", status: "unauthenticated",
user: undefined, user: undefined,
accessToken: undefined,
error: null, error: null,
}); });
} catch (err) { } catch (err) {