From edacc7efa0f8a9320da0e5b163826a02a0ba46ce Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Sat, 15 Mar 2025 20:27:22 -0400 Subject: [PATCH] Fix WhosWatching Spacing FINALLY --- src/equicordplugins/whosWatching/index.tsx | 62 +++++++++++----------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/src/equicordplugins/whosWatching/index.tsx b/src/equicordplugins/whosWatching/index.tsx index 33a13a11..07c7fe21 100644 --- a/src/equicordplugins/whosWatching/index.tsx +++ b/src/equicordplugins/whosWatching/index.tsx @@ -119,36 +119,38 @@ export default definePlugin({ <>
{props.children}
- {users.length ? - <> - - {getIntlMessage("SPECTATORS", { numViewers: userIds.length })} - - ( - openUserProfile(user.id)} - > - {user.username} - - )} - /> - - : No spectators - } + + {getIntlMessage("SPECTATORS", { numViewers: userIds.length })} + +
+ {users.length ? + <> + ( + openUserProfile(user.id)} + > + {user.username} + + )} + /> + + : No spectators + } +
);