diff --git a/web/src/app/home/components/home-sidebar/HomeSidebar.tsx b/web/src/app/home/components/home-sidebar/HomeSidebar.tsx
index ae13ce8eb..189d7a70e 100644
--- a/web/src/app/home/components/home-sidebar/HomeSidebar.tsx
+++ b/web/src/app/home/components/home-sidebar/HomeSidebar.tsx
@@ -83,6 +83,7 @@ import {
SidebarMenuSub,
SidebarMenuSubButton,
SidebarMenuSubItem,
+ SidebarRail,
useSidebar,
} from '@/components/ui/sidebar';
import {
@@ -676,7 +677,12 @@ function NavItems({
)}
/>
) : null}
- {item.name}
+ {item.name}
+ {isBot && item.legacyAdapter && (
+
+ {t('bots.legacyAdapterBadge')}
+
+ )}
);
}
@@ -739,7 +745,14 @@ function NavItems({
)}
/>
) : null}
- {item.name}
+
+ {item.name}
+
+ {isBot && item.legacyAdapter && (
+
+ {t('bots.legacyAdapterBadge')}
+
+ )}
{item.kind && (
+