@@ -175,7 +175,7 @@ export default class Account extends Component {
175
175
< div className = "account__header__section" >
176
176
< span className = "label" > SPENDABLE</ span >
177
177
< p className = "amount" >
178
- { displayBalance ( spendableBalance . HNS || 0 , true ) }
178
+ { displayBalance ( spendableBalance . HNS || 0 , true , 2 ) }
179
179
</ p >
180
180
< span className = "subtext" >
181
181
~${ spendableBalance . converted || "0.00" } { spendableBalance . currency }
@@ -187,7 +187,7 @@ export default class Account extends Component {
187
187
< div className = "account__header__section" >
188
188
< span className = "label" > LOCKED</ span >
189
189
< p className = "amount" >
190
- { displayBalance ( lockedBalance . bidding . HNS , true ) }
190
+ { displayBalance ( lockedBalance . bidding . HNS , true , 2 ) }
191
191
</ p >
192
192
< span className = "subtext" >
193
193
In bids ({ lockedBalance . bidding . num } { " " }
@@ -205,7 +205,7 @@ export default class Account extends Component {
205
205
< div className = "account__header__section" >
206
206
< span className = "label" > LOCKED</ span >
207
207
< p className = "amount" >
208
- { displayBalance ( lockedBalance . revealable . HNS , true ) }
208
+ { displayBalance ( lockedBalance . revealable . HNS , true , 2 ) }
209
209
</ p >
210
210
< span className = "subtext" >
211
211
In reveal ({ lockedBalance . revealable . num } { " " }
@@ -223,7 +223,7 @@ export default class Account extends Component {
223
223
< div className = "account__header__section" >
224
224
< span className = "label" > LOCKED</ span >
225
225
< p className = "amount" >
226
- { displayBalance ( lockedBalance . finished . HNS , true ) }
226
+ { displayBalance ( lockedBalance . finished . HNS , true , 2 ) }
227
227
</ p >
228
228
< span className = "subtext" >
229
229
In finished auctions ({ lockedBalance . finished . num } { " " }
0 commit comments