[eric] fix: stop the onboarding renderer segfault on windows by not preloading the video metadata that triggers it

This commit is contained in:
Eric
2026-05-27 19:53:46 -07:00
parent dd9d5a367c
commit 5b7c852bb7
@@ -448,6 +448,7 @@ const StepCardBody: React.FC<StepCardProps> = ({
component="video"
src={step.videoSrc}
autoPlay={typeof navigator === 'undefined' || !navigator.userAgent.includes('Windows')}
preload={typeof navigator !== 'undefined' && navigator.userAgent.includes('Windows') ? 'none' : 'metadata'}
muted
loop
playsInline