diff --git a/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.test.tsx b/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.test.tsx
deleted file mode 100644
index 58395371bbe..00000000000
--- a/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.test.tsx
+++ /dev/null
@@ -1,148 +0,0 @@
-import { render, screen, waitFor } from "@testing-library/react";
-import userEvent from "@testing-library/user-event";
-import { describe, expect, it, vi } from "vitest";
-import { TableHeaderSortDropdown } from "./TableHeaderSortDropdown";
-
-describe("TableHeaderSortDropdown", () => {
- it("should render", () => {
- const onSortChange = vi.fn();
- render();
- expect(screen.getByRole("button")).toBeInTheDocument();
- });
-
- it("should open dropdown menu when button is clicked", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- expect(screen.getByText("Ascending")).toBeInTheDocument();
- expect(screen.getByText("Descending")).toBeInTheDocument();
- expect(screen.getByText("Reset")).toBeInTheDocument();
- });
- });
-
- it("should call onSortChange with asc when ascending option is clicked", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- expect(screen.getByText("Ascending")).toBeInTheDocument();
- });
-
- const ascendingOption = screen.getByText("Ascending");
- await user.click(ascendingOption);
-
- expect(onSortChange).toHaveBeenCalledTimes(1);
- expect(onSortChange).toHaveBeenCalledWith("asc");
- });
-
- it("should call onSortChange with desc when descending option is clicked", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- expect(screen.getByText("Descending")).toBeInTheDocument();
- });
-
- const descendingOption = screen.getByText("Descending");
- await user.click(descendingOption);
-
- expect(onSortChange).toHaveBeenCalledTimes(1);
- expect(onSortChange).toHaveBeenCalledWith("desc");
- });
-
- it("should call onSortChange with false when reset option is clicked", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- expect(screen.getByText("Reset")).toBeInTheDocument();
- });
-
- const resetOption = screen.getByText("Reset");
- await user.click(resetOption);
-
- expect(onSortChange).toHaveBeenCalledTimes(1);
- expect(onSortChange).toHaveBeenCalledWith(false);
- });
-
- it("should highlight ascending option when sort state is asc", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- const ascendingOption = screen.getByText("Ascending");
- const menuItem = ascendingOption.closest(".ant-dropdown-menu-item");
- expect(menuItem).toHaveClass("ant-dropdown-menu-item-selected");
- });
- });
-
- it("should highlight descending option when sort state is desc", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- const descendingOption = screen.getByText("Descending");
- const menuItem = descendingOption.closest(".ant-dropdown-menu-item");
- expect(menuItem).toHaveClass("ant-dropdown-menu-item-selected");
- });
- });
-
- it("should not highlight any option when sort state is false", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- render();
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- await waitFor(() => {
- expect(screen.getByText("Ascending")).toBeInTheDocument();
- });
-
- const ascendingOption = screen.getByText("Ascending");
- const menuItem = ascendingOption.closest(".ant-dropdown-menu-item");
- expect(menuItem).not.toHaveClass("ant-dropdown-menu-item-selected");
- });
-
- it("should stop event propagation when button is clicked", async () => {
- const user = userEvent.setup();
- const onSortChange = vi.fn();
- const onParentClick = vi.fn();
-
- render(
-
,
- );
-
- const button = screen.getByRole("button");
- await user.click(button);
-
- expect(onParentClick).not.toHaveBeenCalled();
- });
-});
diff --git a/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.tsx b/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.tsx
deleted file mode 100644
index c83257c5c83..00000000000
--- a/ui/litellm-dashboard/src/components/common_components/TableHeaderSortDropdown/TableHeaderSortDropdown.tsx
+++ /dev/null
@@ -1,82 +0,0 @@
-import React from "react";
-import { Button, Dropdown, MenuProps } from "antd";
-import { SwitchVerticalIcon, ChevronUpIcon, ChevronDownIcon, XIcon } from "@heroicons/react/outline";
-
-export type SortState = "asc" | "desc" | false;
-
-interface TableHeaderSortDropdownProps {
- /**
- * Current sort state: "asc", "desc", or false for neutral
- */
- sortState: SortState;
- /**
- * Callback when sort state changes
- * @param newState - The new sort state: "asc", "desc", or false
- */
- onSortChange: (newState: SortState) => void;
- /**
- * Optional column ID for identification
- */
- columnId?: string;
-}
-
-export const TableHeaderSortDropdown: React.FC = ({ sortState, onSortChange }) => {
- const handleMenuClick: MenuProps["onClick"] = ({ key }) => {
- if (key === "asc") {
- onSortChange("asc");
- } else if (key === "desc") {
- onSortChange("desc");
- } else if (key === "reset") {
- onSortChange(false);
- }
- };
-
- const menuItems: MenuProps["items"] = [
- {
- key: "asc",
- label: "Ascending",
- icon: ,
- },
- {
- key: "desc",
- label: "Descending",
- icon: ,
- },
- {
- key: "reset",
- label: "Reset",
- icon: ,
- },
- ];
-
- // Determine which icon to display based on current sort state
- const renderIcon = () => {
- if (sortState === "asc") {
- return ;
- } else if (sortState === "desc") {
- return ;
- } else {
- return ;
- }
- };
-
- return (
-
-
- );
-};