Skip to content

Commit

Permalink
feat: count 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyo-4 committed May 22, 2024
1 parent 3ac9118 commit 8c49183
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/JD/ExperienceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,14 @@ const ExperienceList: React.FC<ExperienceListProps> = ({
} else if (searchText === "" && mainTag.id === "") {
setfilterCount(-1);
}
}, [searching, mainTag, subTag, selectedTab, experienceData]);
}, [
searching,
mainTag,
subTag,
selectedTab,
experienceData,
checkedKeywords,
]);

useEffect(() => {
if (searchText === "") {
Expand Down

0 comments on commit 8c49183

Please sign in to comment.