diff --git a/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/page.tsx b/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/page.tsx
index 5594bd6211d..9ae7dc12f81 100644
--- a/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/page.tsx
+++ b/ui/litellm-dashboard/src/app/(dashboard)/models-and-endpoints/page.tsx
@@ -9,7 +9,6 @@ import { useUISettings } from "@/app/(dashboard)/hooks/uiSettings/useUISettings"
import { all_admin_roles, internalUserRoles } from "@/utils/roles";
import { canCreateModels } from "@/utils/modelPermissions";
import BetaBadge from "@/components/BetaBadge";
-import NewBadge from "@/components/common_components/NewBadge";
import CostOptimizationFeedbackBanner from "@/components/molecules/cost_optimization_feedback_banner";
import ModelInfoView from "@/components/model_info_view";
import TeamInfoView from "@/components/team/TeamInfo";
@@ -125,20 +124,13 @@ export default function ModelsAndEndpointsPage() {
const allModelsLabel = isAdmin ? "All Models" : "Your Models";
const tabLabel = (slug: "" | ModelTabSlug): React.ReactNode => {
if (!slug) return allModelsLabel;
- if (slug === "auto-routers") {
+ if (slug === "auto-routers" || slug === "access-group-budgets") {
return (
{TAB_LABELS[slug]}
);
}
- if (slug === "access-group-budgets") {
- return (
-
- {TAB_LABELS[slug]}
-
- );
- }
return TAB_LABELS[slug];
};