diff --git a/components/layout/search/collections.tsx b/components/layout/search/collections.tsx
index c45833a39..58143570d 100644
--- a/components/layout/search/collections.tsx
+++ b/components/layout/search/collections.tsx
@@ -6,7 +6,8 @@ import FilterList from './filter';
async function CollectionList() {
const collections = await getCollections();
- return ;
+ const filteredCollections = collections.filter(collection => !collection.title.toLowerCase().includes('hidden'))
+ return ;
}
const skeleton = 'mb-3 h-4 w-5/6 animate-pulse rounded';