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

fix: Remove incorrect timeout on standard info notifications

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

View File

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