Skip to content

Commit

Permalink
Merge branch 'hotfix/COT-6_implement_edit_cs_word' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Donghyun Hwang committed Oct 6, 2024
2 parents 227add0 + eb937dc commit ab5b727
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/CS/CSRedirect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ const CSRedirect = () => {
//
//
useEffect(() => {
if (params.generationId === undefined) {
if (params.generationId !== undefined) {
navigate(`/cs/${currentGeneration?.generationId}`);
} else {
navigate(`/cs/${currentGeneration?.generationId}`);
}
}, []);
Expand Down

0 comments on commit ab5b727

Please sign in to comment.