feat: show asset in toAccount field

This commit is contained in:
Matthew Russell
2023-10-31 19:54:05 -07:00
parent 2dea16d1b3
commit d2804d7980
+5 -1
View File
@@ -287,7 +287,11 @@ export const TransferForm = ({
defaultValue={AccountType.ACCOUNT_TYPE_GENERAL}
>
<option value={AccountType.ACCOUNT_TYPE_GENERAL}>
{AccountTypeMapping[AccountType.ACCOUNT_TYPE_GENERAL]}
{asset
? `${AccountTypeMapping[AccountType.ACCOUNT_TYPE_GENERAL]} (${
asset.symbol
})`
: AccountTypeMapping[AccountType.ACCOUNT_TYPE_GENERAL]}
</option>
</TradingSelect>
</TradingFormGroup>