diff --git a/ui/app/providers/page.tsx b/ui/app/providers/page.tsx index 4624f26a..d5d8c522 100644 --- a/ui/app/providers/page.tsx +++ b/ui/app/providers/page.tsx @@ -208,7 +208,11 @@ function ProviderBalance({ return ; } - if (error || !balanceData?.ok || !balanceData.balance_data) { + if ( + error || + !balanceData?.ok || + (balanceData.balance_data === undefined || balanceData.balance_data === null) + ) { return null; }