Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonmaslowski committed Jan 17, 2025
1 parent b228be5 commit 4403138
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ const SimpleViewFilters: React.FC<ISimpleViewFilters> = ({ onChangeCategory }) =
'iog-tag--active': value.toLocaleLowerCase() === active.toLowerCase()
}),
onClick: () => handleSetActive(value),
children: <CategoryChip active={value.toLocaleLowerCase() === active.toLowerCase()} value={value} label={label} />
children: (
<CategoryChip active={value.toLocaleLowerCase() === active.toLowerCase()} value={value} label={label} />
)
})}
data-testid="grid-category-slider"
>
Expand Down

0 comments on commit 4403138

Please sign in to comment.