From d4059646013ffb84e8d32c7efe1c36df02afac7d Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Tue, 31 Oct 2023 19:59:32 -0700 Subject: [PATCH] chore: adjust error message for same account transfer --- libs/accounts/src/lib/transfer-form.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/accounts/src/lib/transfer-form.tsx b/libs/accounts/src/lib/transfer-form.tsx index dc984ce6d..8a6bd542d 100644 --- a/libs/accounts/src/lib/transfer-form.tsx +++ b/libs/accounts/src/lib/transfer-form.tsx @@ -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; },