From 8ee8bc24d508cf46927c03558adc5c7d3b8b7d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20de=20Giessen?= Date: Wed, 1 Apr 2026 12:00:00 +0800 Subject: [PATCH] Corrected value for scrollTo behaviour parameter (#18) --- src/replay/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replay/index.ts b/src/replay/index.ts index adf54827..89199e37 100644 --- a/src/replay/index.ts +++ b/src/replay/index.ts @@ -470,7 +470,7 @@ export class Replayer { this.iframe.contentWindow!.scrollTo({ top: d.y, left: d.x, - behavior: isSync ? 'instant' : 'smooth', + behavior: isSync ? 'auto' : 'smooth', }); } else { try {