Commit 895de6d 1 parent b91f711 commit 895de6d Copy full SHA for 895de6d
File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,19 @@ export const Assets: FC = () => {
43
43
< Table . Body >
44
44
< Table . Row >
45
45
< Table . RowHeaderCell > Wallet Balance:</ Table . RowHeaderCell >
46
- < Table . Cell > { usdFormatter . format ( Number ( deposit . balance ) ) } </ Table . Cell >
46
+ < Table . Cell className = "text-right" >
47
+ { usdFormatter . format ( Number ( deposit . balance ) ) } $
48
+ </ Table . Cell >
47
49
</ Table . Row >
48
50
< Table . Row >
49
51
< Table . RowHeaderCell > Orderly Balance:</ Table . RowHeaderCell >
50
- < Table . Cell > { usdFormatter . format ( collateral . availableBalance ) } </ Table . Cell >
52
+ < Table . Cell className = "text-right" >
53
+ { usdFormatter . format ( collateral . availableBalance ) } $
54
+ </ Table . Cell >
51
55
</ Table . Row >
52
56
< Table . Row >
53
57
< Table . RowHeaderCell > Unsettled PnL:</ Table . RowHeaderCell >
54
- < Table . Cell > { usdFormatter . format ( unsettledPnL ) } </ Table . Cell >
58
+ < Table . Cell className = "text-right" > { usdFormatter . format ( unsettledPnL ) } $ </ Table . Cell >
55
59
</ Table . Row >
56
60
</ Table . Body >
57
61
< Table . Row >
@@ -63,7 +67,7 @@ export const Assets: FC = () => {
63
67
</ Tooltip >
64
68
:
65
69
</ Table . RowHeaderCell >
66
- < Table . Cell > { usdFormatter . format ( availableWithdraw ) } </ Table . Cell >
70
+ < Table . Cell className = "text-right" > { usdFormatter . format ( availableWithdraw ) } $ </ Table . Cell >
67
71
</ Table . Row >
68
72
</ Table . Root >
69
73
< OrderlyDeposit
You can’t perform that action at this time.
0 commit comments