From 88d3e6ed5f1c8fad4c32311829e51d1fdcee2dcb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 20 Feb 2024 14:42:25 +0100 Subject: [PATCH] refactor(ui): refine vue.js app init error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/web/src/main.ts b/ui/web/src/main.ts index 20712939..6dc93195 100644 --- a/ui/web/src/main.ts +++ b/ui/web/src/main.ts @@ -49,7 +49,7 @@ fetch('/config.json') initializeApp(config) } catch (error) { // TODO: add code for UI notifications or other error handling logic - console.error('Error at initializing the app:', error) + console.error('Error at initializing app:', error) } }) .catch(error => { -- 2.34.1