diff --git a/packages/components/src/components/CollectionFiltered/CollectionFiltered.theme.ts b/packages/components/src/components/CollectionFiltered/CollectionFiltered.theme.ts index bde2876..04c0e6f 100644 --- a/packages/components/src/components/CollectionFiltered/CollectionFiltered.theme.ts +++ b/packages/components/src/components/CollectionFiltered/CollectionFiltered.theme.ts @@ -11,6 +11,13 @@ export const styleOverrides: ComponentsOverrides['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 + } }; } };