dashboard.js 543 Bytes
document.addEventListener("DOMContentLoaded", function () {
  setTimeout(() => {
    if (document.getElementById("dismiss-toast")) {
      document.getElementById("dismiss-toast").classList.add("hs-removing");
      document.getElementById("dismiss-toast").classList.remove("show-toast");
      setTimeout(() => {
        document.getElementById("dismiss-toast").remove();
      }, 300);
    } else {
    }
  }, 5000);

  //   test
  setTimeout(() => {
    document.getElementById("dismiss-toast").classList.add("show-toast");
  }, 1000);
});