Formatting

This commit is contained in:
Nick Mowen 2022-10-21 09:45:28 -06:00
parent 478d9b2eef
commit 6a204a839e

View File

@ -55,7 +55,7 @@ export default function WebRtcPlayer({ camera, width, height }) {
// Safari don't support "offerToReceiveVideo"
// so need to create transeivers manually
pc.addTransceiver('video', {direction: 'recvonly'});
pc.addTransceiver('video', { direction: 'recvonly' });
pc.addTransceiver('audio', { direction: 'recvonly' });
return () => {