From a667c48fb7227a158192171a1b2ce837a4d031d4 Mon Sep 17 00:00:00 2001 From: waleed Date: Wed, 25 Mar 2026 16:03:28 -0700 Subject: [PATCH] fix(notifications): auto-dismiss info-level workflow notifications --- .../w/[workflowId]/components/notifications/notifications.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/notifications/notifications.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/notifications/notifications.tsx index 48a4b43dbd6..fc736e0d026 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/notifications/notifications.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/notifications/notifications.tsx @@ -26,7 +26,7 @@ const ACTION_LABELS: Record = { } as const function isAutoDismissable(n: Notification): boolean { - return n.level === 'error' && !!n.workflowId + return !!n.workflowId } function NotificationCountdownRing({ onPause }: { onPause: () => void }) { @@ -54,7 +54,7 @@ function NotificationCountdownRing({ onPause }: { onPause: () => void }) { * Positioned in the bottom-right workspace area, reactive to panel width and terminal height. * Shows both global notifications and workflow-specific notifications. * - * Workflow error notifications auto-dismiss after {@link AUTO_DISMISS_MS}ms with a countdown + * Workflow-scoped notifications auto-dismiss after {@link AUTO_DISMISS_MS}ms with a countdown * ring. Clicking the ring pauses all timers until the notification stack clears. */ interface NotificationsProps {