From 3b78c2e8db06c231ea5547bf6eb9313c772f71c5 Mon Sep 17 00:00:00 2001 From: Thiemann96 Date: Thu, 20 Feb 2020 17:07:08 +0100 Subject: [PATCH] typo fix --- src/pages/login/login.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/login/login.ts b/src/pages/login/login.ts index 586b8c8..7a7fb83 100644 --- a/src/pages/login/login.ts +++ b/src/pages/login/login.ts @@ -29,7 +29,7 @@ export class LoginPage { private async submitLogin(form){ try { - this.token = await this.loginProvider.login(form.values.email,form.values.password) + this.token = await this.loginProvider.login(form.value.email,form.value.password) this.boxes = await this.loginProvider.getUserBoxes(this.token); } catch(err){