ui - filter by all customers

This commit is contained in:
Ishaan Jaff
2024-06-03 20:30:06 -07:00
parent 7a1610327f
commit 856018d5df
@@ -1045,7 +1045,17 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
<Text className="mt-1">
Select Customer Name
</Text>
<Select>
<Select defaultValue="all-customers">
<SelectItem
key="all-customers"
value="all-customers"
onClick={() => {
setSelectedAPIKey(null);
}}
>
All Customers
</SelectItem>
{
allEndUsers?.map((user: any, index: number) => {
return (