From a84cc036df8179442498531fa0b4383f0b96d904 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Sun, 25 Jan 2026 17:15:19 -0500 Subject: [PATCH] fix(ui): remove dead 'Account is paused' error handling from flow-viz Backend now returns quota for paused accounts, no longer returns this error. --- ui/src/components/account/flow-viz/account-card.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/ui/src/components/account/flow-viz/account-card.tsx b/ui/src/components/account/flow-viz/account-card.tsx index 6ddd4dde..0b957e3b 100644 --- a/ui/src/components/account/flow-viz/account-card.tsx +++ b/ui/src/components/account/flow-viz/account-card.tsx @@ -264,16 +264,9 @@ export function AccountCard({ ) : quota?.error ? ( - quota.error === 'Account is paused' ? ( -
- - Paused -
- ) : ( -
- {quota.error.length > 20 ? `${quota.error.slice(0, 18)}...` : quota.error} -
- ) +
+ {quota.error.length > 20 ? `${quota.error.slice(0, 18)}...` : quota.error} +
) : null} )}