Skip to content

Commit

Permalink
fix(selector): wrap text
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Jan 6, 2025
1 parent e01103e commit e61841d
Showing 1 changed file with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,18 @@ export function FundingSourceSelector({
label: loadingAnyCostDetails ? (
'Loading...'
) : (
<span>
Liquid + Staked Balances (
{formatARIO(new mARIOToken(totalBalanceUsed).toARIO().valueOf())}
&nbsp;+&nbsp;
{formatARIO(
new mARIOToken(totalStakeUsed).toARIO().valueOf(),
)}{' '}
{arioTicker})
</span>
<div className="flex flex-wrap gap-2">
<span className="flex w-fit">Liquid + Staked Balances</span>
<span className="flex w-fit">
(
{formatARIO(
new mARIOToken(totalBalanceUsed).toARIO().valueOf(),
)}
&nbsp;+&nbsp;{' '}
{formatARIO(new mARIOToken(totalStakeUsed).toARIO().valueOf())}{' '}
{arioTicker})
</span>
</div>
),
value: 'any',
},
Expand Down

0 comments on commit e61841d

Please sign in to comment.