From 5edfd78f800875cb4e21182df10fd4b6132335f6 Mon Sep 17 00:00:00 2001 From: Katia Bulatova Date: Fri, 7 Aug 2026 10:36:11 +0000 Subject: [PATCH] feat(webapp): name the dashboard agent Ask Trigger everywhere The launcher spelled it out while every other surface read it from the shared label. --- apps/webapp/app/components/dashboard-agent/agent-identity.ts | 4 ++-- .../components/dashboard-agent/dashboardAgentLauncher.tsx | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/webapp/app/components/dashboard-agent/agent-identity.ts b/apps/webapp/app/components/dashboard-agent/agent-identity.ts index 71403d696..b060bafeb 100644 --- a/apps/webapp/app/components/dashboard-agent/agent-identity.ts +++ b/apps/webapp/app/components/dashboard-agent/agent-identity.ts @@ -1,7 +1,7 @@ import { ChatBubbleLeftRightIcon } from "@heroicons/react/20/solid"; -// TODO(TRI-12763): swap in the final character icon and product name here. -export const AGENT_NAME = "Agent"; +// TODO(TRI-12763): swap in the final character icon here. +export const AGENT_NAME = "Trigger"; export const ASK_AGENT_LABEL = `Ask ${AGENT_NAME}`; diff --git a/apps/webapp/app/components/dashboard-agent/dashboardAgentLauncher.tsx b/apps/webapp/app/components/dashboard-agent/dashboardAgentLauncher.tsx index 67c018c38..cb51481db 100644 --- a/apps/webapp/app/components/dashboard-agent/dashboardAgentLauncher.tsx +++ b/apps/webapp/app/components/dashboard-agent/dashboardAgentLauncher.tsx @@ -3,6 +3,7 @@ import { Button } from "~/components/primitives/Buttons"; import { ShortcutKey } from "~/components/primitives/ShortcutKey"; import { SimpleTooltip } from "~/components/primitives/Tooltip"; import type { Shortcut } from "~/hooks/useShortcutKeys"; +import { ASK_AGENT_LABEL } from "./agent-identity"; // Registered once, by `DashboardAgent`. The launcher only displays it. export const TOGGLE_PANEL_SHORTCUT: Shortcut = { @@ -53,8 +54,8 @@ export function DashboardAgentLauncher() { } button={ - }