From 06895cc9f82221c3512bd13cba860d2479f8543e Mon Sep 17 00:00:00 2001 From: Mihajlo Date: Thu, 10 Jun 2021 12:08:56 +0200 Subject: [PATCH] style: lint --- src/auth/AuthManager.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/auth/AuthManager.ts b/src/auth/AuthManager.ts index 99f91b9..6da6967 100644 --- a/src/auth/AuthManager.ts +++ b/src/auth/AuthManager.ts @@ -70,7 +70,10 @@ export class AuthManager { } } - private async sendLoginRequest(loginForm: {[key: string]: any}, loginParams: {[key: string]: any}) { + private async sendLoginRequest( + loginForm: { [key: string]: any }, + loginParams: { [key: string]: any } + ) { for (const key in loginForm) { loginParams[key] = loginForm[key] }