Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2023-05-16 10:22:17 +02:00
parent b9f9636bd6
commit bd355d268d
1 changed files with 5 additions and 1 deletions

View File

@ -76,7 +76,11 @@ const RiskDashboard: NextPage = () => {
className="text-left" className="text-left"
key={colName} key={colName}
> >
{colName} {colName}{' '}
{colName.toLowerCase().includes('fee') ||
colName.toLowerCase().includes('slippage')
? '(bps)'
: ''}
</Th> </Th>
) )
} }