Skip to content

Commit

Permalink
refactor : 상수 > 변수화
Browse files Browse the repository at this point in the history
  • Loading branch information
guesung committed Jul 7, 2023
1 parent 36c9884 commit 173d139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/grouping/create-meeting/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function CreateMeeting() {
};

const handleNextButton = () => {
if (currentTab < 2) setCurrentTab((currentTab: number) => currentTab + 1);
if (currentTab < ModalTabList.length) setCurrentTab((currentTab: number) => currentTab + 1);
else {
closeModal();
console.log(selectValue);
Expand Down

0 comments on commit 173d139

Please sign in to comment.