Start video muted

This lets us get auto play in firefox
This commit is contained in:
Charlotte Som 2023-02-23 17:00:27 +00:00
parent bf2d54e858
commit be8b65863b

View file

@ -43,7 +43,7 @@ const Video = ({user}: {user: string}) => {
}
}, [videoRef, user])
return <video ref={videoRef} autoPlay controls playsInline />
return <video ref={videoRef} autoPlay muted controls playsInline />
}
export default () => {