diff --git a/apps/web/src/controllers/CollectionListController/CollectionListHeader.tsx b/apps/web/src/controllers/CollectionListController/CollectionListHeader.tsx index d9671caa8..596a23401 100644 --- a/apps/web/src/controllers/CollectionListController/CollectionListHeader.tsx +++ b/apps/web/src/controllers/CollectionListController/CollectionListHeader.tsx @@ -90,14 +90,6 @@ const filters: SegmentedItem[] = [ 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<{ diff --git a/apps/web/src/controllers/DashboardListController/DashboardHeader.tsx b/apps/web/src/controllers/DashboardListController/DashboardHeader.tsx index b9173efe7..b255dcd2b 100644 --- a/apps/web/src/controllers/DashboardListController/DashboardHeader.tsx +++ b/apps/web/src/controllers/DashboardListController/DashboardHeader.tsx @@ -46,18 +46,6 @@ const filters: SegmentedItem[] = [ label: 'All ', 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<{