Skip to content

Commit

Permalink
fix: 리뷰 작성 완료 시 잘못된 경로로 이동되는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chysis committed Aug 8, 2024
1 parent b3dd5b0 commit 37cb946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/ReviewWritingCompletePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ReviewWritingCompletePage = () => {
const navigate = useNavigate();

const handleClickHomeButton = () => {
navigate('/home', { replace: true });
navigate('/', { replace: true });
};

return (
Expand Down

0 comments on commit 37cb946

Please sign in to comment.