Skip to content

Commit

Permalink
Temporarily hide "All search results" display and "Clear filters" but…
Browse files Browse the repository at this point in the history
…ton (#146)
  • Loading branch information
ct3685 authored Aug 22, 2024
1 parent b3ca995 commit ce9fa9e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ export const styleOverrides: ComponentsOverrides<Theme>['CollectionFiltered'] =
// '[class*=CollectionFiltered-contentContainer]': {
// padding: '0 !important'
// }
// Temporarily hiding the "All search results" display and "Clear filters" button
'& [data-testid="CollectionFiltered-ResultsDisplay"]': {
display: 'none' // Hides the results display
},
'& [data-testid="CollectionFilters-clear"]': {
display: 'none' // Hides the clear filters button
}
};
}
};
Expand Down

0 comments on commit ce9fa9e

Please sign in to comment.