Skip to content

Commit fe68bbd

Browse files
authored
fix symbol mapping logic (#143)
1 parent 1cb3165 commit fe68bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/simulation/SimulationSubComponents/stateChangeSubComponents/StateChangeSubComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const ApprovalChange = (props: ApprovalProps) => {
5757
style={{ color: verified ? 'white' : '#fb4b4b', fontSize: '18px', marginBottom: 0 }}
5858
className={`${styles['font-archivo-bold']}`}
5959
>
60-
{roundedAmount} {symbol || isNFT ? 'NFT' : 'tokens'}
60+
{roundedAmount} {symbol || (isNFT ? 'NFT' : 'tokens')}
6161
</h3>
6262

6363
{roundedAmount !== 'ALL' && (

0 commit comments

Comments
 (0)