diff --git a/ts/components/GroupCallRemoteParticipant.tsx b/ts/components/GroupCallRemoteParticipant.tsx index cf4b1d32f..c0e6752af 100644 --- a/ts/components/GroupCallRemoteParticipant.tsx +++ b/ts/components/GroupCallRemoteParticipant.tsx @@ -460,11 +460,7 @@ export const GroupCallRemoteParticipant: React.FC = React.memo( ref={canvasEl => { remoteVideoRef.current = canvasEl; if (canvasEl) { - canvasContextRef.current = canvasEl.getContext('2d', { - alpha: false, - desynchronized: true, - storage: 'discardable', - } as CanvasRenderingContext2DSettings); + canvasContextRef.current = canvasEl.getContext('2d'); } else { canvasContextRef.current = null; }