Skip to content

Commit

Permalink
Merge pull request #135 from bsideproject/moon
Browse files Browse the repository at this point in the history
[feat] index.tsx 수정
  • Loading branch information
KinDDoGGang authored Sep 11, 2023
2 parents 721a915 + d0f8c18 commit 471b02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function Home() {
if ((clickedChip || '') !== '' && filters.length > 1) {
result = filters[0] === option;
} else if (filters.length === 1 ) {
result = option === filters?.[0]
result = option === filters[0]
}
return result;
};
Expand Down

0 comments on commit 471b02c

Please sign in to comment.