Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
geido committed Mar 31, 2023
1 parent e47cbc3 commit 9aa9410
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import ActionButtons from './ActionButtons';
import Horizontal from './Horizontal';
import Vertical from './Vertical';

const HiddenFilerBar = styled.div`
const HiddenFilterBar = styled.div`
display: none;
`;

Expand Down Expand Up @@ -282,7 +282,7 @@ const FilterBar: React.FC<FiltersBarProps> = ({
) : null;

return hidden ? (
<HiddenFilerBar>{filterBarComponent}</HiddenFilerBar>
<HiddenFilterBar>{filterBarComponent}</HiddenFilterBar>
) : (
filterBarComponent
);
Expand Down

0 comments on commit 9aa9410

Please sign in to comment.