diff --git a/ui/component/viewers/videoViewer/internal/videojs.jsx b/ui/component/viewers/videoViewer/internal/videojs.jsx index d0cec1678..195c4cd5e 100644 --- a/ui/component/viewers/videoViewer/internal/videojs.jsx +++ b/ui/component/viewers/videoViewer/internal/videojs.jsx @@ -200,6 +200,11 @@ export default React.memo(function VideoJs(props: Props) { eventTracking: true, overlay: OVERLAY.OVERLAY_DATA, }, + // fixes problem of errant CC button showing up on iOS + // TODO: find the source of why the button recently began to show up on iOS + controlBar: { + subsCapsButton: false, + }, }; const tapToUnmuteRef = useRef();