Skip to content

Commit

Permalink
[FE] BUG: navigate 경로 수정 #1688
Browse files Browse the repository at this point in the history
  • Loading branch information
wet6123 committed Oct 8, 2024
1 parent 5c68481 commit fa05f5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ const LeftMainNavContainer = ({ isAdmin }: { isAdmin?: boolean }) => {

const onClickPresentationDetailButton = () => {
if (isAdmin) {
navigator("/presentation/detail");
navigator("/admin/presentation/detail");
} else {
navigator("detail");
navigator("/presentation/detail");
}
closeAll();
};
Expand Down

0 comments on commit fa05f5c

Please sign in to comment.