Skip to content

Commit

Permalink
Merge branch 'v3-main' into add-guild-page
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Nov 26, 2024
2 parents a78e0ce + 201e0a1 commit 90a6378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(dashboard)/explorer/components/GuildCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const GuildCard: FunctionComponent<{ guild: Guild }> = ({ guild }) => {
</span>
</Badge>

<Badge>{`${guild.roleCount} roles`}</Badge>
<Badge>{`${guild.roleCount} role${guild.roleCount > 1 ? "s" : ""}`}</Badge>
</div>
</Card>
</Link>
Expand Down

0 comments on commit 90a6378

Please sign in to comment.