From 1cde33ca03448b9f66bc1c198e188f1a1e81e3e1 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 12 Nov 2021 16:47:31 -0800 Subject: [PATCH] Add user count to user table headings --- web/pages/chat/users.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/chat/users.tsx b/web/pages/chat/users.tsx index 15707f51e..147f7a8f8 100644 --- a/web/pages/chat/users.tsx +++ b/web/pages/chat/users.tsx @@ -79,10 +79,10 @@ export default function ChatUsers() { {connectedUsers}

- Banned Users + Banned Users {online ? `(${disabledUsers.length})` : null} - Moderators + Moderators {online ? `(${moderators.length})` : null} );