diff --git a/web/src/app/home/components/home-sidebar/HomeSidebar.tsx b/web/src/app/home/components/home-sidebar/HomeSidebar.tsx
index 6204c9d2b..1c9bf6e7b 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 {
@@ -726,7 +727,12 @@ function NavItems({
)}
/>
) : null}
- {item.name}
+ {item.name}
+ {isBot && item.legacyAdapter && (
+
+ {t('bots.legacyAdapterBadge')}
+
+ )}
);
}
@@ -789,7 +795,14 @@ function NavItems({
)}
/>
) : null}
- {item.name}
+
+ {item.name}
+
+ {isBot && item.legacyAdapter && (
+
+ {t('bots.legacyAdapterBadge')}
+
+ )}
{item.kind && (
+