mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix(sidebar): handle channel as muted if 'none'
This commit is contained in:
parent
3d5df68771
commit
20590641bc
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ const ServerSidebar = observer((props: Props) => {
|
||||||
if (!entry) return;
|
if (!entry) return;
|
||||||
|
|
||||||
const active = channel?._id === entry._id;
|
const active = channel?._id === entry._id;
|
||||||
const muted = props.notifications[id] === "muted";
|
const muted = props.notifications[id] === "none";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ConditionalLink
|
<ConditionalLink
|
||||||
|
|
Loading…
Reference in a new issue