Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonfancher committed Nov 4, 2021
1 parent 2fc2b2e commit aa70610
Showing 1 changed file with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const WithdrawModalStepConfirmation = ({
<ul className="space-y-1">
<li>
<Text>
<span className="text-gray-500">Destination:</span>{" "}
{formValues.to}{" "}
Destination:{" "}
<span className="font-medium">{formValues.to}</span>{" "}
{isThirdPartyWithdrawal && (
<span className="italic">
via {ualAccount.accountName}
Expand All @@ -49,33 +49,36 @@ export const WithdrawModalStepConfirmation = ({
</li>
<li>
<Text>
<span className="text-gray-500">Amount:</span>{" "}
{assetToLocaleString(
amountAsAsset,
amountAsAsset.precision
)}
Amount:{" "}
<span className="font-medium">
{assetToLocaleString(
amountAsAsset,
amountAsAsset.precision
)}
</span>
</Text>
</li>
{isThirdPartyWithdrawal && formValues.memo ? (
<li>
<Text>
<span className="text-gray-500">Memo:</span>{" "}
{formValues.memo}
Memo:{" "}
<span className="font-medium">
{formValues.memo}
</span>
</Text>
</li>
) : null}
</ul>
{isThirdPartyWithdrawal && (
<Text>
These funds will first be withdrawn to your Eden{" "}
{tokenConfig.symbol} account of record (
Funds will be withdrawn to your Eden {tokenConfig.symbol}{" "}
account of record (
<span className="font-medium">
{ualAccount.accountName}
</span>
) and then transferred from your {tokenConfig.symbol}{" "}
account to{" "}
<span className="font-medium">{formValues.to}</span>. This
will happen within a single transaction.
) and transferred from your {tokenConfig.symbol} account to{" "}
<span className="font-medium">{formValues.to}</span> within
a single transaction.
</Text>
)}
<div className="flex space-x-3">
Expand Down

0 comments on commit aa70610

Please sign in to comment.