diff --git a/ui/litellm-dashboard/src/app/(dashboard)/settings/admin-settings/page.tsx b/ui/litellm-dashboard/src/app/(dashboard)/settings/admin-settings/page.tsx index 14f7ca1eeb5..8dae33afe7e 100644 --- a/ui/litellm-dashboard/src/app/(dashboard)/settings/admin-settings/page.tsx +++ b/ui/litellm-dashboard/src/app/(dashboard)/settings/admin-settings/page.tsx @@ -1,6 +1,6 @@ "use client"; -import AdminPanel from "@/components/Admins"; +import AdminPanel from "@/components/AdminPanel"; const AdminSettings = () => { diff --git a/ui/litellm-dashboard/src/app/page.tsx b/ui/litellm-dashboard/src/app/page.tsx index 872c811cc4c..7c9cd029446 100644 --- a/ui/litellm-dashboard/src/app/page.tsx +++ b/ui/litellm-dashboard/src/app/page.tsx @@ -4,7 +4,7 @@ import APIReferenceView from "@/app/(dashboard)/api-reference/APIReferenceView"; import SidebarProvider from "@/app/(dashboard)/components/SidebarProvider"; import OldModelDashboard from "@/app/(dashboard)/models-and-endpoints/ModelsAndEndpointsView"; import PlaygroundPage from "@/app/(dashboard)/playground/page"; -import AdminPanel from "@/components/Admins"; +import AdminPanel from "@/components/AdminPanel"; import AgentsPanel from "@/components/agents"; import BudgetPanel from "@/components/budgets/budget_panel"; import CacheDashboard from "@/components/cache_dashboard"; diff --git a/ui/litellm-dashboard/src/components/Admins.test.tsx b/ui/litellm-dashboard/src/components/AdminPanel.test.tsx similarity index 99% rename from ui/litellm-dashboard/src/components/Admins.test.tsx rename to ui/litellm-dashboard/src/components/AdminPanel.test.tsx index 77b403fab1d..7d1d2f46cf1 100644 --- a/ui/litellm-dashboard/src/components/Admins.test.tsx +++ b/ui/litellm-dashboard/src/components/AdminPanel.test.tsx @@ -1,7 +1,7 @@ import { render, screen, waitFor } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; import { beforeEach, describe, expect, it, vi } from "vitest"; -import AdminPanel from "./Admins"; +import AdminPanel from "./AdminPanel"; const mockGetSSOSettings = vi.fn(); const mockGetAllowedIPs = vi.fn(); diff --git a/ui/litellm-dashboard/src/components/admins.tsx b/ui/litellm-dashboard/src/components/AdminPanel.tsx similarity index 100% rename from ui/litellm-dashboard/src/components/admins.tsx rename to ui/litellm-dashboard/src/components/AdminPanel.tsx