poprawki w autoryzacji

This commit is contained in:
Mateusz Gruszczyński
2025-07-11 10:38:24 +02:00
parent d91a46bf22
commit 7786310de3
2 changed files with 11 additions and 5 deletions

View File

@@ -8,5 +8,5 @@ function showToast(message, type = 'primary') {
toast.innerHTML = `<div class="d-flex"><div class="toast-body">${message}</div></div>`;
toastContainer.appendChild(toast);
setTimeout(() => { toast.remove(); }, 4000);
setTimeout(() => { toast.remove(); }, 2000);
}