Merge pull request #1041 from buster-so/devin/BUS-1874-1758572369

Remove non-functional collections filter options (BUS-1874)
This commit is contained in:
wellsbunk5 2025-09-22 16:00:03 -06:00 committed by GitHub
commit 6b98564841
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 20 deletions

View File

@ -90,14 +90,6 @@ const filters: SegmentedItem<string>[] = [
label: 'All', label: 'All',
value: JSON.stringify({}), 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<{ const CollectionFilters: React.FC<{

View File

@ -46,18 +46,6 @@ const filters: SegmentedItem<string>[] = [
label: 'All ', label: 'All ',
value: JSON.stringify({}), value: JSON.stringify({}),
}, },
{
label: 'My dashboards',
value: JSON.stringify({
only_my_dashboards: true,
}),
},
{
label: 'Shared with me',
value: JSON.stringify({
shared_with_me: true,
}),
},
]; ];
const DashboardFilters: React.FC<{ const DashboardFilters: React.FC<{