From ea63d384fdf605982033a389bbe9487cc36649a1 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 18 Nov 2021 09:36:42 +0100 Subject: [PATCH] web/flows: fix lint errors Signed-off-by: Jens Langhammer --- .../AuthenticatorValidateStage.ts | 45 ++++++++++--------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/web/src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts b/web/src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts index ac2aab9ee..7418f6a10 100644 --- a/web/src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts +++ b/web/src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts @@ -160,29 +160,32 @@ export class AuthenticatorValidateStage case DeviceClassesEnum.Static: case DeviceClassesEnum.Totp: case DeviceClassesEnum.Sms: - return html` 1} - > - `; + return html` + 1} + > + `; case DeviceClassesEnum.Webauthn: - return html` 1} - > - `; + return html` + 1} + > + `; case DeviceClassesEnum.Duo: - return html` 1} - > - `; + return html` + 1} + > + `; } return html``; }