chore: adjust error message for same account transfer

This commit is contained in:
Matthew Russell
2023-10-31 19:59:32 -07:00
parent d2804d7980
commit d405964601
+3 -1
View File
@@ -252,7 +252,9 @@ export const TransferForm = ({
pubKey === selectedPubKey &&
value === AccountType.ACCOUNT_TYPE_GENERAL
) {
return t('Cannot transfer to the same account');
return t(
'Cannot transfer to the same account type for the connected key'
);
}
return true;
},