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 a0737c4 commit 9794b1dCopy full SHA for 9794b1d
src/components/cards/challenge/Challenge.tsx
@@ -57,7 +57,7 @@ export default function ChallengeCard({ data, community, isCourseEnd }: Challeng
57
<div className="md:pl-2 max-w-max">
58
<div className="flex text-sm text-gray-700">
59
<span className="block font-medium">
60
- {`${data?.isHackathon && "$"} ${totalReward} ${data?.isHackathon ? `Prize Pool Rewards` : `${reward?.token} Rewards`}`}
+ {`${data?.isHackathon ? "$" : ""} ${totalReward} ${data?.isHackathon ? `Prize Pool Rewards` : `${reward?.token} Rewards`}`}
61
</span>
62
</div>
63
<div className="text-gray-400 text-xs font-normal">{data?.isHackathon ? "Top projects win money prizes" : "For submission and feedback"}</div>
0 commit comments