diff --git a/src/frontend/src/features/rooms/livekit/components/Tools.tsx b/src/frontend/src/features/rooms/livekit/components/Tools.tsx index 2537545d..194e5fb6 100644 --- a/src/frontend/src/features/rooms/livekit/components/Tools.tsx +++ b/src/frontend/src/features/rooms/livekit/components/Tools.tsx @@ -22,6 +22,7 @@ export interface ToolsButtonProps { title: string description: string onPress: () => void + isBetaFeature?: boolean } const ToolButton = ({ @@ -29,6 +30,7 @@ const ToolButton = ({ title, description, onPress, + isBetaFeature = false, }: ToolsButtonProps) => { return ( {icon} + {isBetaFeature && ( +
+ BETA +
+ )}
@@ -127,6 +148,7 @@ export const Tools = () => { title={t('tools.transcript.title')} description={t('tools.transcript.body')} onPress={() => openTranscript()} + isBetaFeature /> )} {hasScreenRecordingAccess && ( @@ -135,6 +157,7 @@ export const Tools = () => { title={t('tools.screenRecording.title')} description={t('tools.screenRecording.body')} onPress={() => openScreenRecording()} + isBetaFeature /> )}