From aa55cecb449cb40341cef0fdf4824cc6a666b8dd Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Jun 2022 00:10:38 -0300 Subject: prettier --- packages/anastasis-webui/src/components/fields/EmailInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/anastasis-webui/src/components/fields/EmailInput.tsx') diff --git a/packages/anastasis-webui/src/components/fields/EmailInput.tsx b/packages/anastasis-webui/src/components/fields/EmailInput.tsx index 4c35c0686..55c99c024 100644 --- a/packages/anastasis-webui/src/components/fields/EmailInput.tsx +++ b/packages/anastasis-webui/src/components/fields/EmailInput.tsx @@ -39,8 +39,8 @@ export function EmailInput(props: TextInputProps): VNode { type="email" class={showError ? "input is-danger" : "input"} onKeyPress={(e) => { - if (e.key === 'Enter' && props.onConfirm) { - props.onConfirm() + if (e.key === "Enter" && props.onConfirm) { + props.onConfirm(); } }} onInput={(e) => { -- cgit v1.2.3