Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas committed Dec 9, 2024
1 parent da09464 commit 9ac5ef8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@ interface Props {
erroredFilters: string[];
}

const isFilterDivider = (id: string) => {
return id.startsWith('NATIVE_FILTER_DIVIDER') ? true : false;
};
const isFilterDivider = (id: string) =>
!!id.startsWith('NATIVE_FILTER_DIVIDER');

const FilterTitleContainer = forwardRef<HTMLDivElement, Props>(
(
Expand Down

0 comments on commit 9ac5ef8

Please sign in to comment.