From 44521716c6ee84733c521e00bfffe6cbf2dbdf9e Mon Sep 17 00:00:00 2001 From: Ryan Alexander <38785445+ryanalexander@users.noreply.github.com> Date: Mon, 16 Aug 2021 05:24:37 +1000 Subject: [PATCH] Update ServerListSidebar.tsx --- src/components/navigation/left/ServerListSidebar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/navigation/left/ServerListSidebar.tsx b/src/components/navigation/left/ServerListSidebar.tsx index 41afbb77..13933e7f 100644 --- a/src/components/navigation/left/ServerListSidebar.tsx +++ b/src/components/navigation/left/ServerListSidebar.tsx @@ -58,7 +58,7 @@ function Icon({ {unread === "mention" && ( <> - {count<10?count:"9+"} + {count < 9 ? count : "9+"} )} @@ -268,7 +268,7 @@ export const ServerListSidebar = observer(({ unreads, lastOpened }: Props) => { homeActive && history.push("/settings") }> - +