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