-
-
-
-
-
-
-
-
-
-
+ {isLoadingTeams ? (
+
+ ) : (
+ <>
+
+
+
+ >
+ )}
+ {isLoadingTeams ? (
+
+
+
+
+ ) : (
+
+
+
+
+ )}
);
diff --git a/ui/litellm-dashboard/src/components/EntityUsageExport/UsageExportHeader.tsx b/ui/litellm-dashboard/src/components/EntityUsageExport/UsageExportHeader.tsx
index b390c19df1..989ff8703e 100644
--- a/ui/litellm-dashboard/src/components/EntityUsageExport/UsageExportHeader.tsx
+++ b/ui/litellm-dashboard/src/components/EntityUsageExport/UsageExportHeader.tsx
@@ -4,6 +4,7 @@ import { Select } from "antd";
import React, { useState } from "react";
import EntityUsageExportModal from "./EntityUsageExportModal";
import type { EntitySpendData, EntityType } from "./types";
+import type { Team } from "@/components/key_team_helpers/key_list";
interface UsageExportHeaderProps {
dateValue: DateRangePickerValue;
@@ -18,6 +19,7 @@ interface UsageExportHeaderProps {
filterOptions?: Array<{ label: string; value: string }>;
customTitle?: string;
compactLayout?: boolean;
+ teams?: Team[];
}
const UsageExportHeader: React.FC