From a015187ce98dc9f2c33084f3027ca99d0cd4ccb9 Mon Sep 17 00:00:00 2001 From: Evie Gauthier Date: Sun, 14 Jun 2026 12:23:44 -0400 Subject: [PATCH] Use outline bell for room notification chips --- .changeset/outline-room-notification-chips.md | 5 +++++ src/app/hooks/useRoomsNotificationPreferences.ts | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changeset/outline-room-notification-chips.md diff --git a/.changeset/outline-room-notification-chips.md b/.changeset/outline-room-notification-chips.md new file mode 100644 index 000000000..ef1329ad9 --- /dev/null +++ b/.changeset/outline-room-notification-chips.md @@ -0,0 +1,5 @@ +--- +default: patch +--- + +Use the outline bell for room-list mention notification indicators. diff --git a/src/app/hooks/useRoomsNotificationPreferences.ts b/src/app/hooks/useRoomsNotificationPreferences.ts index 12003826a..1056726b9 100644 --- a/src/app/hooks/useRoomsNotificationPreferences.ts +++ b/src/app/hooks/useRoomsNotificationPreferences.ts @@ -123,8 +123,7 @@ export const roomNotificationModeIcon = ( export const roomNotificationModeChipIcon = (mode?: RoomNotificationMode): ReactNode => { if (mode === RoomNotificationMode.Mute) return sizedIcon(BellSlash, '100'); - if (mode === RoomNotificationMode.SpecialMessages) - return sizedIcon(Bell, '100', { weight: 'fill' }); + if (mode === RoomNotificationMode.SpecialMessages) return sizedIcon(Bell, '100'); if (mode === RoomNotificationMode.AllMessages) return sizedIcon(BellRinging, '100'); return sizedIcon(BellSimple, '100');