Skip to content

Commit f1dd0f6

Browse files
committed
fix e2e ui testing linting error
1 parent 5cd20d2 commit f1dd0f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/litellm-dashboard/src/components/team/team_info.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ interface TeamData {
5252
max_parallel_requests: number | null;
5353
budget_reset_at: string | null;
5454
model_id: string | null;
55-
litellm_model_table: string | null;
55+
litellm_model_table: {
56+
model_aliases: Record<string, string>;
57+
} | null;
5658
created_at: string;
5759
};
5860
keys: any[];
@@ -640,7 +642,6 @@ const TeamInfoView: React.FC<TeamInfoProps> = ({
640642
)}
641643
</Card>
642644

643-
{/* Add Model Aliases Card */}
644645
<ModelAliasesCard
645646
teamId={teamId}
646647
accessToken={accessToken}

0 commit comments

Comments
 (0)