rename admins to AdminPanel

This commit is contained in:
yuneng-jiang 2026-02-05 21:11:26 -08:00 committed by Sameer Kankute
parent e0b2791ef0
commit c1dba7e7fb
4 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
"use client";
import AdminPanel from "@/components/Admins";
import AdminPanel from "@/components/AdminPanel";
const AdminSettings = () => {

View file

@ -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";

View file

@ -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();