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");