We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7268594 commit b7b180aCopy full SHA for b7b180a
src/components/cards/community/index.tsx
@@ -84,7 +84,7 @@ export default function CommunityCard({ showRewards = true, community }: Communi
84
<div className="flex flex-col space-y-0">
85
<div className="mt-4 font-medium text-theme-accent">{t("communities.card.earn")}</div>
86
<div className="mt-4 font-light text-theme-accent">
87
- {t(community.challenges !== 1 ? "communities.card.challenges" : "communities.card.challenge", { count: community.challenges })}
+ {t(community.challenges > 1 ? "communities.card.challenges" : "communities.card.challenge", { count: community.challenges })}
88
</div>
89
90
<div className="mt-4 align-middle">
0 commit comments