merchant-backoffice

ZZZ: Inactive/Deprecated
Log | Files | Refs | Submodules | README

commit 121a1ea45a4c7055bca9206f19e1213b32211d87
parent cf6f52ed5900f5849a870ef8ea670b634ff81ff2
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Thu, 27 May 2021 04:12:49 -0400

fix typo: s/doest/does not/

Diffstat:
Mpackages/frontend/src/paths/instance/transfers/create/CreatePage.tsx | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/packages/frontend/src/paths/instance/transfers/create/CreatePage.tsx b/packages/frontend/src/paths/instance/transfers/create/CreatePage.tsx @@ -57,7 +57,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode { const errors: FormErrors<Entity> = { wtid: !state.wtid ? i18n`cannot be empty` : - (!CROCKFORD_BASE32_REGEX.test(state.wtid) ? i18n`check the id, doest look valid` : + (!CROCKFORD_BASE32_REGEX.test(state.wtid) ? i18n`check the id, does not look valid` : (state.wtid.length !== 52 ? i18n`should have 52 characters, current ${state.wtid.length}` : undefined)), payto_uri: !state.payto_uri ? i18n`cannot be empty` : undefined, @@ -104,4 +104,4 @@ export function CreatePage({ onCreate, onBack }: Props): VNode { </div> </section> </div> -} -\ No newline at end of file +}