From 11256076d84d82699a5aa54869cdfa452940a7a2 Mon Sep 17 00:00:00 2001 From: Otto Date: Thu, 5 Feb 2026 17:54:39 +0000 Subject: [PATCH] fix(frontend): Rename "Tasks" tab to "Agents" in navbar (#11982) ## Summary Renames the "Tasks" tab in the navbar to "Agents" per the Figma design. ## Changes - `Navbar.tsx`: Changed label from "Tasks" to "Agents" image ## Why - "Tasks" was incorrectly named and confusing for users trying to find their agent builds - Matches the Figma design ## Linear Ticket Fixes [SECRT-1894](https://linear.app/autogpt/issue/SECRT-1894) ## Related - [SECRT-1865](https://linear.app/autogpt/issue/SECRT-1865) - Find and Manage Existing/Unpublished or Recent Agent Builds Is Unintuitive --- .../frontend/src/components/layout/Navbar/Navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/components/layout/Navbar/Navbar.tsx b/autogpt_platform/frontend/src/components/layout/Navbar/Navbar.tsx index f4bdecd1df..9997c4a51c 100644 --- a/autogpt_platform/frontend/src/components/layout/Navbar/Navbar.tsx +++ b/autogpt_platform/frontend/src/components/layout/Navbar/Navbar.tsx @@ -47,7 +47,7 @@ export function Navbar() { const actualLoggedInLinks = [ { name: "Home", href: homeHref }, - ...(isChatEnabled === true ? [{ name: "Tasks", href: "/library" }] : []), + ...(isChatEnabled === true ? [{ name: "Agents", href: "/library" }] : []), ...loggedInLinks, ];