fix: allow scroll in highlighting stage

This commit is contained in:
Rohit Rajan
2025-10-22 14:13:59 +05:30
parent 377fabe8c3
commit f15ef57949

View File

@@ -702,12 +702,6 @@ export const DOMBrowserRenderer: React.FC<RRWebDOMBrowserRendererProps> = ({
return;
}
if (isInCaptureMode) {
e.preventDefault();
e.stopPropagation();
return;
}
if (!isInCaptureMode) {
const wheelEvent = e as WheelEvent;
const deltaX = Math.round(wheelEvent.deltaX / 10) * 10;