diff --git a/it0_app/lib/core/router/app_router.dart b/it0_app/lib/core/router/app_router.dart index 8cb08c3..825a27a 100644 --- a/it0_app/lib/core/router/app_router.dart +++ b/it0_app/lib/core/router/app_router.dart @@ -157,7 +157,9 @@ class _ScaffoldWithNavState extends ConsumerState Expanded(child: widget.child), ], ), - floatingActionButton: const FloatingRobotFab(), + // Hide the iAgent FAB on the My Agents tab so users don't mistake it + // for the per-instance chat button. + floatingActionButton: currentIndex == 1 ? null : const FloatingRobotFab(), floatingActionButtonLocation: FloatingActionButtonLocation.endFloat, bottomNavigationBar: NavigationBar( selectedIndex: currentIndex,