Skip to content

Commit 3db223a

Browse files
authored
Merge pull request #371 from sherlock-protocol/fix/dashboard-contest-pool-tbd
fix: lead senior fixed pay tbd
2 parents b8f8860 + 88775f0 commit 3db223a

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/AppProtocolDashboard.tsx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,23 @@ const AppProtocolDashboard = () => {
9696
<Text strong>Contest Prize Pool</Text>
9797
</Td>
9898
<Td>
99-
<Text alignment="right">{`${
100-
protocolDashboard.contest.prizePool ? commify(protocolDashboard.contest.prizePool) : "TBD"
101-
} USDC`}</Text>
99+
<Text alignment="right">
100+
{protocolDashboard.contest.prizePool
101+
? ` ${commify(protocolDashboard.contest.prizePool)} USDC`
102+
: "TBD"}
103+
</Text>
102104
</Td>
103105
</Tr>
104106
<Tr>
105107
<Td>
106108
<Text strong>Lead Senior Watson Fixed Pay</Text>
107109
</Td>
108110
<Td>
109-
<Text alignment="right">{`${commify(
110-
protocolDashboard.contest.leadSeniorAuditorFixedPay
111-
)} USDC`}</Text>
111+
<Text alignment="right">
112+
{protocolDashboard.contest.leadSeniorAuditorFixedPay
113+
? `${commify(protocolDashboard.contest.leadSeniorAuditorFixedPay)} USDC`
114+
: "TBD"}
115+
</Text>
112116
</Td>
113117
</Tr>
114118
<Tr>

0 commit comments

Comments
 (0)