Skip to content

Commit

Permalink
[Fix] 로그아웃 처리관련 오류 수정
Browse files Browse the repository at this point in the history
- 로그아웃 시 로컬 스토리지에 있는 타이머 삭제 관련 코드 수정 (로컬 스토리지 key 값이 잘못 기입되어 수정)

Issues #122
  • Loading branch information
novice1993 committed Sep 30, 2023
1 parent dff02ab commit d76716d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Headers/LoginHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ const LoginHeader: React.FC<LoginHeaderProps> = () => {
dispatch(setLogoutState()); // 전역변수에서 로그아웃 상태로 설정
localStorage.removeItem("accessToken"); // 엑세스 토큰 제거
localStorage.removeItem("refreshToken"); // 리프레시 토큰 제거
localStorage.removeItem("logoutAlarmTime01");
localStorage.removeItem("logoutAlarmTime02");
localStorage.removeItem("autoLogoutSecondAlarm");
localStorage.removeItem("autoLogoutLastAlarm");

// 페이지를 새로고침합니다.
window.location.reload();
Expand Down

0 comments on commit d76716d

Please sign in to comment.