Update ui/litellm-dashboard/src/components/model_dashboard/health_check_columns.tsx

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Ishaan Jaff 2026-02-03 12:53:43 -08:00 committed by GitHub
parent 4f93fe2b52
commit c932efb915
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,7 +112,7 @@ export const healthCheckColumns = (
const teamId = model.model_info?.team_id;
if (!teamId) {
return <Text className="text-gray-400 text-sm">-</Text>;
return <span className="text-gray-400 text-sm">-</span>;
}
const team = teams?.find((t) => t.team_id === teamId);