Skip to content

Commit

Permalink
ui: fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
skozin committed Nov 23, 2020
1 parent 90def38 commit c334bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/lido/app/src/components/ChangeWCSidePanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const validationSchema = yup.object().shape({
.required()
.test(
'credentials',
'Credentials must be a 64-character hexadecimal number',
'Credentials must be a 32-byte hexadecimal number',
(credentials) => {
const hasPrefix = credentials.substring(0, 2) === '0x'
const withoutPrefix = hasPrefix ? credentials.substring(2) : credentials
Expand Down

0 comments on commit c334bb9

Please sign in to comment.