Skip to content

Commit

Permalink
Fix: 디펜던시 추가하다
Browse files Browse the repository at this point in the history
  • Loading branch information
kikiyeom committed Jan 28, 2024
1 parent 82e1dfe commit 6299531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/FaqPage/FaqPage.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const FaqPage = () => {
({ label }) => label.toUpperCase() === myTeamName.toUpperCase(),
);
return [myTeamOptionObject ?? commonSelectOption];
}, [teamOptions]);
}, [teamOptions, myTeamName, isMaster]);

const handleUpdateButtonClick = async () => {
const originalOutputData = getLocalStorageData(EDITOR_ID);
Expand Down

0 comments on commit 6299531

Please sign in to comment.