Skip to content

Commit 2e813a8

Browse files
authored
Merge pull request #29 from code4rena-dev/samus/audit+miti-changes
Translate audit+miti to just audit
2 parents 5667128 + ea5848c commit 2e813a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/ContestTile/CompactTemplate.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ const IsContest = ({title, contestData, sponsorUrl, sponsorImage}: {
9393
</div>
9494
)}
9595
</span>}
96-
<p className="type">{contestType}</p>
96+
<p className="type">
97+
{contestType === "Audit + mitigation review"
98+
? "Audit"
99+
: contestType}
100+
</p>
97101
</div>
98102
</header>
99103
<div className="content--wrapper">

0 commit comments

Comments
 (0)