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');