From ea8ebb1a541d50e88d8f4043cdc0424a0ff2b5b9 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Wed, 15 Apr 2026 20:17:50 -0700 Subject: [PATCH] update RRWebplayer config to fix seek issues and warning suppression --- .../websites/[websiteId]/replays/[replayId]/ReplayPlayer.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/websites/[websiteId]/replays/[replayId]/ReplayPlayer.tsx b/src/app/(main)/websites/[websiteId]/replays/[replayId]/ReplayPlayer.tsx index 04bb2345a..d517043f5 100644 --- a/src/app/(main)/websites/[websiteId]/replays/[replayId]/ReplayPlayer.tsx +++ b/src/app/(main)/websites/[websiteId]/replays/[replayId]/ReplayPlayer.tsx @@ -1,7 +1,7 @@ 'use client'; +import { useMobile } from '@/components/hooks'; import { Column } from '@umami/react-zen'; import { useEffect, useRef, useState } from 'react'; -import { useMobile } from '@/components/hooks'; import 'rrweb-player/dist/style.css'; export function ReplayPlayer({ events }: { events: any[] }) { @@ -32,6 +32,8 @@ export function ReplayPlayer({ events }: { events: any[] }) { autoPlay: false, showController: true, speedOption: [1, 2, 4, 8], + useVirtualDom: false, + showWarning: false, }, });