File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
src/apps/wallet/src/home/tabs/winnings Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments