Skip to content

Commit

Permalink
Fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
john-conroy committed Nov 5, 2024
1 parent 3b3211a commit 3efd437
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { ReactElement, useCallback } from 'react';
import Box from '@mui/material/Box';
import Chip, { ChipProps } from '@mui/material/Chip';
import Button from '@mui/material/Button';
import Stack from '@mui/material/Stack';
Expand Down Expand Up @@ -53,9 +54,11 @@ const HierarchichalTermChip = React.memo(function HierarchicalTermChip({
function ResetFiltersButton() {
const resetFilters = useSearchStore((state) => state.resetFilters);
return (
<Button variant="outlined" onClick={resetFilters}>
Clear Filters
</Button>
<Box flexShrink={0}>
<Button variant="outlined" onClick={resetFilters}>
Clear Filters
</Button>
</Box>
);
}

Expand Down

0 comments on commit 3efd437

Please sign in to comment.