From 561d8dbc09581ff21aa79e85f3903c45e99ac33b Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 24 Apr 2023 08:20:18 -0400 Subject: [PATCH] feat: Never auto-close error notifications Signed-off-by: Sebastian Malton --- .../notifications/show-error-notification.injectable.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/src/renderer/components/notifications/show-error-notification.injectable.ts b/packages/core/src/renderer/components/notifications/show-error-notification.injectable.ts index ca5a1a70da..14b56b06a5 100644 --- a/packages/core/src/renderer/components/notifications/show-error-notification.injectable.ts +++ b/packages/core/src/renderer/components/notifications/show-error-notification.injectable.ts @@ -16,7 +16,6 @@ const showErrorNotificationInjectable = getInjectable({ return (message, customOpts = {}) => notificationsStore.add({ status: NotificationStatus.ERROR, - timeout: 5000, message, ...customOpts, });