1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

feat: Never auto-close error notifications

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-04-24 08:20:18 -04:00
parent 43f3059c9b
commit 561d8dbc09

View File

@ -16,7 +16,6 @@ const showErrorNotificationInjectable = getInjectable({
return (message, customOpts = {}) => return (message, customOpts = {}) =>
notificationsStore.add({ notificationsStore.add({
status: NotificationStatus.ERROR, status: NotificationStatus.ERROR,
timeout: 5000,
message, message,
...customOpts, ...customOpts,
}); });