Skip to content

Commit

Permalink
Merge pull request #1692 from innovationacademy-kr/fe/dev/fix_present…
Browse files Browse the repository at this point in the history
…ation_error/#1688

[FE] BUG: navigate 경로 수정 #1688
  • Loading branch information
wet6123 authored Oct 22, 2024
2 parents 66db19c + fa05f5c commit 1ddb190
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 1ddb190

Please sign in to comment.