Remove non-functional 'My collections' and 'Shared with me' filter options

- Remove broken filter entries from filters array in CollectionListHeader.tsx
- Keep 'All' filter option for consistency with other pages
- Fixes BUS-1874: Collections page filtering tabs that don't work properly
- Backend API already supports optional filter parameters, no changes needed
- Maintains existing CollectionFilters component and UI structure

Co-Authored-By: Wells Bunker <wells@buster.so>
This commit is contained in:
Devin AI 2025-09-22 20:19:40 +00:00
parent fc8e4ab5c6
commit df3ff6d6d8
1 changed files with 0 additions and 8 deletions

View File

@ -90,14 +90,6 @@ const filters: SegmentedItem<string>[] = [
label: 'All',
value: JSON.stringify({}),
},
{
label: 'My collections',
value: JSON.stringify({ owned_by_me: true }),
},
{
label: 'Shared with me',
value: JSON.stringify({ shared_with_me: true }),
},
];
const CollectionFilters: React.FC<{