diff --git a/components/ServerCard.tsx b/components/ServerCard.tsx index 4e9d784..fe618fc 100644 --- a/components/ServerCard.tsx +++ b/components/ServerCard.tsx @@ -73,7 +73,9 @@ export default function ServerCard({

{name}

- Offline + +

Offline

+
); diff --git a/components/ServerCardPopover.tsx b/components/ServerCardPopover.tsx index aab2299..6f54633 100644 --- a/components/ServerCardPopover.tsx +++ b/components/ServerCardPopover.tsx @@ -15,8 +15,11 @@ export function ServerCardPopoverCard({ return (
{title}
- {children ? children :
{content}
} -
+ {children ? ( + children + ) : ( +
{content}
+ )}
); }