From bcf95a65f1d2be91fa613f0da9d0ae978faaef75 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 24 Apr 2023 08:20:43 -0400 Subject: [PATCH] fix: Remove incorrect timeout on standard info notifications Signed-off-by: Sebastian Malton --- .../notifications/show-info-notification.injectable.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/src/renderer/components/notifications/show-info-notification.injectable.ts b/packages/core/src/renderer/components/notifications/show-info-notification.injectable.ts index 34bc443749..d67836b413 100644 --- a/packages/core/src/renderer/components/notifications/show-info-notification.injectable.ts +++ b/packages/core/src/renderer/components/notifications/show-info-notification.injectable.ts @@ -16,7 +16,6 @@ const showInfoNotificationInjectable = getInjectable({ return (message, customOpts = {}) => notificationsStore.add({ status: NotificationStatus.INFO, - timeout: 5000, message, ...customOpts, });