From f7ded1854f8bdd2ed837c19440331e0b2c442a83 Mon Sep 17 00:00:00 2001 From: Matt Vollmer Date: Fri, 21 Aug 2026 12:30:30 -0400 Subject: [PATCH 1/2] fix(agents): point trial link to /deployment/premium The "Start an unlimited trial" link in the QueuedForCapacityCallout now routes to the internal /deployment/premium page instead of the external https://coder.com/trial URL, matching the convention used elsewhere in the app (e.g. LicensesSettingsPageView, Paywall). --- .../ChatConversation/QueuedForCapacityCallout.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx b/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx index db9adb9adf8..b86b5963501 100644 --- a/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx +++ b/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx @@ -1,4 +1,5 @@ import type { FC, ReactNode } from "react"; +import { Link as RouterLink } from "react-router"; import { Alert, AlertDescription } from "#/components/Alert/Alert"; import { Link } from "#/components/Link/Link"; import { docs } from "#/utils/docs"; @@ -54,13 +55,10 @@ export const QueuedForCapacityCallout: FC = ({ } else if (canManageLicenses) { action = ( <> - - Start an unlimited trial + + + Start an unlimited trial + {" "} or{" "} Date: Fri, 21 Aug 2026 16:45:56 +0000 Subject: [PATCH 2/2] fix(site): match queued-capacity link size to message text --- .../QueuedForCapacityCallout.tsx | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx b/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx index b86b5963501..07b5364344e 100644 --- a/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx +++ b/site/src/pages/AgentsPage/components/ChatConversation/QueuedForCapacityCallout.tsx @@ -31,12 +31,7 @@ export const QueuedForCapacityCallout: FC = ({ let action: ReactNode = ( <> - + Learn more . @@ -46,7 +41,7 @@ export const QueuedForCapacityCallout: FC = ({ action = ( <> Contact your Coder account team or{" "} - + sales@coder.com {" "} to upgrade to unlimited concurrent agents. @@ -55,18 +50,13 @@ export const QueuedForCapacityCallout: FC = ({ } else if (canManageLicenses) { action = ( <> - + Start an unlimited trial {" "} or{" "} - + learn more .