Skip to content

Commit 7dda0ba

Browse files
authored
Merge pull request #1107 from topcoder-platform/PM-1278_fees-display
PM-1278 fees display
2 parents ee1393f + a0639bf commit 7dda0ba

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/apps/wallet/src/home/tabs/winnings/WinningsTab.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
209209
Processing Payment: $
210210
{totalAmountStr}
211211
{' '}
212-
USD
213212
</div>
214213
{walletDetails && (
215214
<>
@@ -245,15 +244,18 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
245244
<hr />
246245
<div className={`${styles.summary} body-main-bold`}>
247246
<span>Net amount after fees:</span>
248-
<span>{netAmount.toFixed(2)}</span>
247+
<span>
248+
$
249+
{netAmount.toFixed(2)}
250+
</span>
249251
</div>
250252
{walletDetails?.primaryCurrency && walletDetails.primaryCurrency !== 'USD' && (
251253
<div className={`${styles.alert} body-main-medium`}>
252254
Net amount will be converted to
253255
{' '}
254256
{walletDetails.primaryCurrency}
255257
{' '}
256-
with 2% conversion fee applied.
258+
with a 2% conversion fee applied.
257259
</div>
258260
)}
259261
</div>

0 commit comments

Comments
 (0)