From a852e495b99886f1ac09344497e1d0920f7adc40 Mon Sep 17 00:00:00 2001 From: Hetu Nandu Date: Wed, 9 Apr 2025 10:37:45 +0530 Subject: [PATCH] chore: Update AI agent tag to preview (#40180) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Remove beta tag and mark it preview ## Summary by CodeRabbit - **Refactor** - Updated the Applications section so that the tag now displays as “Preview” instead of “Beta,” ensuring consistent and clearer user-facing labels. --- app/client/src/ce/pages/Applications/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/client/src/ce/pages/Applications/index.tsx b/app/client/src/ce/pages/Applications/index.tsx index c4903e2417..85b1174f9e 100644 --- a/app/client/src/ce/pages/Applications/index.tsx +++ b/app/client/src/ce/pages/Applications/index.tsx @@ -281,9 +281,9 @@ const TitleTag = styled(Tag)` max-width: fit-content; `; -const BetaTag = ( +const PreviewTag = ( {}}> - Beta + Preview ); @@ -935,7 +935,7 @@ export function ApplicationsSection(props: any) { isMobile={isMobile} onClickAddNewButton={onClickAddNewAppButton} title={createMessage(AI_AGENTS_APPLICATIONS)} - titleTag={BetaTag} + titleTag={PreviewTag} updateApplicationDispatch={updateApplicationDispatch} workspaceId={activeWorkspace.id} />