Reduce alert timeout to sane value

This commit is contained in:
Matthias 2024-02-18 15:03:00 +01:00
parent f6fa2f3d5e
commit eb2a1d1d9c

View File

@ -7,7 +7,7 @@ export function showAlert(message: string, severity: AlertSeverity = 'warning',
message,
title: `${bot ? 'Bot: ' + bot : 'Notification'}`,
severity,
timeout: 60000,
timeout: 5000,
});
}