Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/outline-room-notification-chips.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

Use the outline bell for room-list mention notification indicators.
3 changes: 1 addition & 2 deletions src/app/hooks/useRoomsNotificationPreferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Loading