Skip to content

Commit

Permalink
fix(webapp): player style
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wing committed Dec 28, 2023
1 parent 063f42d commit a70b1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/components/player/whep-player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function WhepPlayer(props: { streamId: string, status: UserStatus
<div className='flex flex-col'>
<center>
{ loading
? <SvgProgress/>
? <div className='m-xl'><SvgProgress/></div>
: <Player user={userStream} muted={false} width={props.width} display="auto" />
}
</center>
Expand Down
2 changes: 1 addition & 1 deletion webapp/components/player/whip-player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function WhipPlayer(props: { streamId: string, width: string }) {
<div className='flex flex-col'>
<center>
{ loading
? <SvgProgress/>
? <div className='m-xl'><SvgProgress/></div>
: <Player user={localStream} muted={true} width={props.width} display="auto" />
}
</center>
Expand Down

0 comments on commit a70b1df

Please sign in to comment.