diff --git a/src/frontend/src/features/rooms/livekit/components/Tools.tsx b/src/frontend/src/features/rooms/livekit/components/Tools.tsx index 5c8780ac..2bcc5953 100644 --- a/src/frontend/src/features/rooms/livekit/components/Tools.tsx +++ b/src/frontend/src/features/rooms/livekit/components/Tools.tsx @@ -19,7 +19,6 @@ export interface ToolsButtonProps { title: string description: string onPress: () => void - isBetaFeature?: boolean } const ToolButton = ({ @@ -27,7 +26,6 @@ const ToolButton = ({ title, description, onPress, - isBetaFeature = false, }: ToolsButtonProps) => { return ( {title} - {isBetaFeature && ( -
- BETA -
- )} {description} @@ -172,7 +153,6 @@ export const Tools = () => { title={t('tools.transcript.title')} description={t('tools.transcript.body')} onPress={() => openTranscript()} - isBetaFeature /> )} {hasScreenRecordingAccess && ( @@ -181,7 +161,6 @@ export const Tools = () => { title={t('tools.screenRecording.title')} description={t('tools.screenRecording.body')} onPress={() => openScreenRecording()} - isBetaFeature /> )}