Skip to content

Commit b8f8860

Browse files
authored
Merge pull request #370 from sherlock-protocol/fix/dashboard-contest-pool-tbd
fix: contest pool tbd
2 parents 2b025b1 + d917a6c commit b8f8860

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/AppProtocolDashboard.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ const AppProtocolDashboard = () => {
9696
<Text strong>Contest Prize Pool</Text>
9797
</Td>
9898
<Td>
99-
<Text alignment="right">{`${commify(protocolDashboard.contest.prizePool)} USDC`}</Text>
99+
<Text alignment="right">{`${
100+
protocolDashboard.contest.prizePool ? commify(protocolDashboard.contest.prizePool) : "TBD"
101+
} USDC`}</Text>
100102
</Td>
101103
</Tr>
102104
<Tr>

0 commit comments

Comments
 (0)