Skip to content

Commit

Permalink
feat(GuildCard): display member count and role count
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Nov 26, 2024
1 parent b5ffe17 commit 8b3c7e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(dashboard)/explorer/components/GuildCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ export const GuildCard: FunctionComponent<{ guild: Guild }> = ({ guild }) => {
<span>
{new Intl.NumberFormat("en", {
notation: "compact",
}).format(12345)}
}).format(guild.memberCount)}
</span>
</Badge>

<Badge>5 groups</Badge>
<Badge>{`${guild.roleCount} roles`}</Badge>
</div>
</Card>
</Link>
Expand Down

0 comments on commit 8b3c7e7

Please sign in to comment.