From 3665fe26da26165642943ee4c0cf600efd00a753 Mon Sep 17 00:00:00 2001 From: John Ngei Date: Wed, 24 Jan 2024 00:25:16 +0100 Subject: [PATCH] fixed: mute-icon when channel is muted --- src/status_im/contexts/chat/messenger/messages/list/view.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/contexts/chat/messenger/messages/list/view.cljs b/src/status_im/contexts/chat/messenger/messages/list/view.cljs index d2b156cc73..41664e04b6 100644 --- a/src/status_im/contexts/chat/messenger/messages/list/view.cljs +++ b/src/status_im/contexts/chat/messenger/messages/list/view.cljs @@ -159,7 +159,7 @@ unmute-chat-label mute-chat-label)) :color cover-bg-color - :icon (if muted? :i/muted :i/activity-center) + :icon (if muted? :i/activity-center :i/muted) :on-press (fn [] (if muted? (home.actions/unmute-chat-action chat-id)