diff --git a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx index 2ebd3562a..0b654dd3c 100644 --- a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx +++ b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx @@ -33,6 +33,7 @@ interface Props { isEnterprise: boolean; isCallActive: boolean; agentIds: string[]; + livePlay: boolean; } function AssistActions({ @@ -44,7 +45,8 @@ function AssistActions({ hasPermission, isEnterprise, isCallActive, - agentIds + agentIds, + livePlay }: Props) { const [isPrestart, setPrestart] = useState(false); const [incomeStream, setIncomeStream] = useState([]); @@ -115,7 +117,7 @@ function AssistActions({ {(onCall || remoteActive) && ( <>
toggleAnnotation(!annotating)} role="button" > @@ -132,7 +134,7 @@ function AssistActions({ )}
@@ -186,5 +188,6 @@ export default con( annotating: state.annotating, remoteControlStatus: state.remoteControl, peerConnectionStatus: state.peerConnectionStatus, + livePlay: state.livePlay, }))(AssistActions) );