Skip to content

Commit

Permalink
[feat] index.tsx 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JAEMOONLEE committed Sep 11, 2023
1 parent e5fad62 commit d0f8c18
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 d0f8c18

Please sign in to comment.