issue #33
All checks were successful
Test CI / build (push) Successful in 18s

- Access 토큰 만료시 Refresh 토큰으로 Access 토큰 재갱신 요청 로직 구현 중
This commit is contained in:
2025-12-01 22:35:29 +09:00
parent 45dc4cbaaa
commit 49ca9b9ae3
4 changed files with 88 additions and 10 deletions

View File

@@ -4,6 +4,7 @@ import { create } from 'zustand';
interface AuthStoreProps {
authData: AuthData | undefined;
login: (data: AuthData) => void;
logout: () => void;
}
export const useAuthStore = create<AuthStoreProps>((set) => ({