diff --git a/ui/litellm-dashboard/src/components/teams.tsx b/ui/litellm-dashboard/src/components/teams.tsx index 9e5758a28..56d4f5e0d 100644 --- a/ui/litellm-dashboard/src/components/teams.tsx +++ b/ui/litellm-dashboard/src/components/teams.tsx @@ -427,7 +427,7 @@ const Team: React.FC = ({ overflow: "hidden", }} > - {team["max_budget"] ? team["max_budget"] : "No limit"} + {team["max_budget"] !== null && team["max_budget"] !== undefined ? team["max_budget"] : "No limit"}