From 6108cfd486b886959f8cd1ea00f7d83d76532a4c Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Wed, 25 Mar 2026 07:58:41 -0400 Subject: [PATCH] feat: change default toast type from "error" to "info" and add debug logging --- frontend/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app.js b/frontend/app.js index 670d67d..5ab9d7f 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -1176,7 +1176,8 @@ /** Display a brief toast message at the bottom of the viewport. */ function showToast(message, type) { - type = type || "error"; + console.log("showToast called with:", message, type); + type = type || "info"; let container = document.getElementById("toast-container"); if (!container) { container = document.createElement("div");