Skip to content

Commit

Permalink
fix: 비밀번호 입력 창에서는 뒤로가기 할 때 이름으로 가도록 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Aug 16, 2024
1 parent 0b57939 commit 2ecb245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/CreateEventPage/SetEventNamePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const SetEventNamePage = () => {
const submitEventName = (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();

navigate(ROUTER_URLS.eventCreatePassword, {state: {eventName}, replace: true});
navigate(ROUTER_URLS.eventCreatePassword, {state: {eventName}});
};

return (
Expand Down

0 comments on commit 2ecb245

Please sign in to comment.