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") }> - +