chore: Update AI agent tag to preview (#40180)

## Description

Remove beta tag and mark it preview

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## 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.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Hetu Nandu 2025-04-09 10:37:45 +05:30 committed by GitHub
parent 12c4cbbe01
commit a852e495b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -281,9 +281,9 @@ const TitleTag = styled(Tag)`
max-width: fit-content;
`;
const BetaTag = (
const PreviewTag = (
<TitleTag isClosable={false} onClose={() => {}}>
Beta
Preview
</TitleTag>
);
@ -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}
/>