From 182f84679517c8be5ebfa7b84a89fff6e355a415 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 27 Feb 2024 00:49:09 +0100 Subject: [PATCH] refactor(ui): cleanup toast messages MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/src/composables/UIClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/web/src/composables/UIClient.ts b/ui/web/src/composables/UIClient.ts index 51d61f26..963e0e4b 100644 --- a/ui/web/src/composables/UIClient.ts +++ b/ui/web/src/composables/UIClient.ts @@ -176,7 +176,7 @@ export class UIClient { ) } this.ws.onclose = () => { - useToast().info(`WebSocket to UI server '${this.uiServerConfiguration.host}' closed`) + useToast().info(`WebSocket to UI server closed`) } } -- 2.34.1