From 797a4dcbfe21fcea21270cf025ed89006dab42d6 Mon Sep 17 00:00:00 2001 From: ryan-crabbe-berri Date: Sat, 29 Aug 2026 17:10:20 -0700 Subject: [PATCH] fix(ui): badge the Model Access Group Budgets tab as Beta rather than New --- .../src/app/(dashboard)/models-and-endpoints/page.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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]; };