From d351fd506a8ac33f0def72ee126449bbb12e07bb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 24 Sep 2025 23:10:14 +0300 Subject: [PATCH] chore(toast): get rid of redundant titles --- apps/client/src/services/toast.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/client/src/services/toast.ts b/apps/client/src/services/toast.ts index f275e625b..cc67fa225 100644 --- a/apps/client/src/services/toast.ts +++ b/apps/client/src/services/toast.ts @@ -1,4 +1,3 @@ -import ws from "./ws.js"; import utils from "./utils.js"; export interface ToastOptions { @@ -82,7 +81,6 @@ function showMessage(message: string, delay = 2000) { console.debug(utils.now(), "message:", message); toast({ - title: "Info", icon: "check", message: message, autohide: true, @@ -94,7 +92,6 @@ export function showError(message: string, delay = 10000) { console.log(utils.now(), "error: ", message); toast({ - title: "Error", icon: "alert", message: message, autohide: true,