feat: change default toast type from "error" to "info" and add debug logging

This commit is contained in:
Bruno Charest 2026-03-25 07:58:41 -04:00
parent 98481b074a
commit 6108cfd486

View File

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