Skip to content

Commit 91b3b8e

Browse files
committed
[fix] idle 4시간으로 설정
1 parent 177233b commit 91b3b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/domains/login/hook/useIdleLogout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useLogout } from './useLogout';
55
import { useToast } from '@/shared/hook/useToast';
66
import { useAuthStore } from '@/domains/shared/store/auth';
77

8-
const IDLE_TIMEOUT = 1 * 60 * 1000;
8+
const IDLE_TIMEOUT = 4 * 60 * 60 * 1000;
99

1010
export const useIdleLogout = () => {
1111
const handleLogout = useLogout();

0 commit comments

Comments
 (0)