Start video muted

This lets us get auto play in firefox
main
Charlotte Som 2023-02-23 17:00:27 +00:00
parent bf2d54e858
commit be8b65863b
1 changed files with 1 additions and 1 deletions

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 () => {