mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 09:16:15 -04:00
fix(bip39-generator): typo in validation message
This commit is contained in:
parent
8a9e7888de
commit
7570ad9656
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ const entropyValidation = useValidation({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
validator: (value) => /^[a-fA-F0-9]*$/.test(value),
|
validator: (value) => /^[a-fA-F0-9]*$/.test(value),
|
||||||
message: 'Entropy should an hexadecimal number',
|
message: 'Entropy should be an hexadecimal string',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue