Skip to content

Commit

Permalink
refactor: 로그아웃 클릭 시 페이지 새로고침 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ccwnc committed Apr 1, 2024
1 parent 710f9a1 commit 7788907
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/layout/header/UserMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const UserMenu = ({ profileImageUrl, nickname, email, userMenuRef, onClick }: Us
const handleClickSignout = (event: React.MouseEvent<HTMLElement, MouseEvent>) => {
onClick(event);
signout();
window.location.reload();
};

return (
Expand Down

0 comments on commit 7788907

Please sign in to comment.