From eb2a1d1d9ce17a1eec350378272b9c9a2465623c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 18 Feb 2024 15:03:00 +0100 Subject: [PATCH] Reduce alert timeout to sane value --- src/shared/alerts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/alerts.ts b/src/shared/alerts.ts index 75f0be42..f148a3ce 100644 --- a/src/shared/alerts.ts +++ b/src/shared/alerts.ts @@ -7,7 +7,7 @@ export function showAlert(message: string, severity: AlertSeverity = 'warning', message, title: `${bot ? 'Bot: ' + bot : 'Notification'}`, severity, - timeout: 60000, + timeout: 5000, }); }