From 82ad8f026bfdb7eef76ffe84a33afde5ff041b07 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 10 Nov 2019 17:14:33 -0500 Subject: [PATCH] [O] Optimize field types --- src/components/login/login.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/login/login.ts b/src/components/login/login.ts index 02dfeb5..417a925 100644 --- a/src/components/login/login.ts +++ b/src/components/login/login.ts @@ -11,11 +11,11 @@ import VersionUtils from '@/logic/utils/version-utils'; }) export default class Login extends Vue { - public username: any = ''; - public password: any = ''; + public username: string = ''; + public password: string = ''; public loading: boolean = false; - public error: String = ''; + public error: string = ''; /** * This is called when the instance is created.