From b55c25aa7c011e4c635ffd45901656c642c745d8 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 13 Oct 2019 20:48:17 -0400 Subject: [PATCH] [O] Hide loading on start because of the login screen --- src/components/app/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 6ad846f..264e020 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -81,7 +81,7 @@ export default class App extends Vue public token: string = ''; // Loading text - public loading: string = '1. Initiating...'; + public loading: string = ''; // Http Client public static http: HttpUtils = new HttpUtils();