chore: remove dummy account selector

This commit is contained in:
Matthew Russell
2023-02-06 10:43:35 -08:00
parent 6f36aaab29
commit b3872aeba5
2 changed files with 1 additions and 14 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ export const TransferContainer = () => {
<p className="text-sm mb-4">
{t('Transfer funds to another Vega key from')}{' '}
<Lozenge className="font-mono">{truncateByChars(pubKey || '')}</Lozenge>{' '}
{t('If you are at all unsure, stop and seek advice')}
{t('If you are at all unsure, stop and seek advice.')}
</p>
<TransferForm
pubKey={pubKey}
-13
View File
@@ -181,19 +181,6 @@ export const TransferForm = ({
<InputError forInput="asset">{errors.asset.message}</InputError>
)}
</FormGroup>
<FormGroup label="Account type" labelFor="account-type">
<div
className="border border-neutral-300 dark:border-neutral-700 rounded-md p-2"
aria-describedby="account-type"
>
{AccountTypeMapping.ACCOUNT_TYPE_GENERAL}{' '}
{asset && (
<span className="text-neutral-500">
({formatNumber(asset.balance, asset.decimals)} available)
</span>
)}
</div>
</FormGroup>
<FormGroup label="Amount" labelFor="amount">
<Input
id="amount"