Skip to content

Commit

Permalink
fix(webapp): eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wing committed Dec 22, 2024
1 parent d2cb831 commit 7d97632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/components/player/player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default function Player(props: { stream: MediaStream, muted: boolean, aud
muted={props.muted}
ref={refVideo}
style={props.stream?.getVideoTracks().length
? { width: props.width, display: props.video ? "inline" : "none"}
? { width: props.width, display: props.video ? 'inline' : 'none'}
: { height: '0px' }}
/>
{!props.video || showAudio
Expand Down

0 comments on commit 7d97632

Please sign in to comment.