From 15370e2340a98974158bf73206bbbe8325b477e1 Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 22 Mar 2026 23:52:13 -0500 Subject: [PATCH 1/2] removed blocked users notice from setting --- .changeset/fix-block-users-notice.md | 5 +++++ .../features/settings/notifications/Notifications.tsx | 11 ----------- 2 files changed, 5 insertions(+), 11 deletions(-) create mode 100644 .changeset/fix-block-users-notice.md diff --git a/.changeset/fix-block-users-notice.md b/.changeset/fix-block-users-notice.md new file mode 100644 index 000000000..f0e28766d --- /dev/null +++ b/.changeset/fix-block-users-notice.md @@ -0,0 +1,5 @@ +--- +default: patch +--- + +Removed the blocked users moved notice from notifications setting page. diff --git a/src/app/features/settings/notifications/Notifications.tsx b/src/app/features/settings/notifications/Notifications.tsx index ef84ae59e..e7988fa09 100644 --- a/src/app/features/settings/notifications/Notifications.tsx +++ b/src/app/features/settings/notifications/Notifications.tsx @@ -36,17 +36,6 @@ export function Notifications({ requestClose }: NotificationsProps) { - - Block Messages - - - - From 659c462133af2b0e182cf1b231c32820e1a97c7f Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 22 Mar 2026 23:54:03 -0500 Subject: [PATCH 2/2] remove unused imports --- src/app/features/settings/notifications/Notifications.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/features/settings/notifications/Notifications.tsx b/src/app/features/settings/notifications/Notifications.tsx index e7988fa09..f8935b782 100644 --- a/src/app/features/settings/notifications/Notifications.tsx +++ b/src/app/features/settings/notifications/Notifications.tsx @@ -1,8 +1,5 @@ import { Box, Text, IconButton, Icon, Icons, Scroll } from 'folds'; import { Page, PageContent, PageHeader } from '$components/page'; -import { SequenceCard } from '$components/sequence-card'; -import { SettingTile } from '$components/setting-tile'; -import { SequenceCardStyle } from '$features/settings/styles.css'; import { SystemNotification } from './SystemNotification'; import { AllMessagesNotifications } from './AllMessages'; import { SpecialMessagesNotifications } from './SpecialMessages';