chore: fix typo for keypair error string

This commit is contained in:
Anastasiya Semenkevich 2024-06-12 09:51:20 +03:00 committed by Anastasiya
parent 9ce23fe556
commit e896267874
1 changed files with 2 additions and 2 deletions

View File

@ -79,5 +79,5 @@ class WalletSeedPhrase(Enum):
class WalletAccountPopup(Enum): class WalletAccountPopup(Enum):
WALLET_ACCOUNT_NAME_MIN = 'Account name must be at least 5 characters' WALLET_ACCOUNT_NAME_MIN = 'Account name must be at least 5 characters'
WALLET_KEYPAIR_NAME_MIN = 'Key pair name must be at least 5 characters' WALLET_KEYPAIR_NAME_MIN = 'Key pair name must be at least 5 character(s)'
WALLET_KEYPAIR_MIN = 'Key pair must be at least 5 characters' WALLET_KEYPAIR_MIN = 'Key pair must be at least 5 character(s)'