From 217b97cf4a77ab41d11723a193227894551eaea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 27 Jul 2022 23:47:30 +0200 Subject: [PATCH] Remove Move notifications from filter bar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- .../features/notifications/components/filter_bar.tsx | 7 ------- 1 file changed, 7 deletions(-) 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 ;