diff --git a/app/soapbox/features/notifications/components/filter_bar.tsx b/app/soapbox/features/notifications/components/filter_bar.tsx index 7de482cdc..371d68ccf 100644 --- a/app/soapbox/features/notifications/components/filter_bar.tsx +++ b/app/soapbox/features/notifications/components/filter_bar.tsx @@ -15,7 +15,6 @@ const messages = defineMessages({ boosts: { id: 'notifications.filter.boosts', defaultMessage: 'Reposts' }, polls: { id: 'notifications.filter.polls', defaultMessage: 'Poll results' }, follows: { id: 'notifications.filter.follows', defaultMessage: 'Follows' }, - moves: { id: 'notifications.filter.moves', defaultMessage: 'Moves' }, emoji_reacts: { id: 'notifications.filter.emoji_reacts', defaultMessage: 'Emoji reacts' }, statuses: { id: 'notifications.filter.statuses', defaultMessage: 'Updates from people you follow' }, }); @@ -88,12 +87,6 @@ const NotificationFilterBar = () => { action: onClick('follow'), name: 'follow', }); - items.push({ - text: , - title: intl.formatMessage(messages.moves), - action: onClick('move'), - name: 'move', - }); } return ;