Skip to content

Commit

Permalink
Merge pull request #150 from KUSITMS-29th-TEAM-B/feat/#101
Browse files Browse the repository at this point in the history
feat: count 오류 수정
  • Loading branch information
hyo-4 authored May 22, 2024
2 parents ab143ce + 8c49183 commit 20343cc
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 20343cc

Please sign in to comment.