Skip to content

Commit

Permalink
small style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocupe committed Nov 6, 2023
1 parent 7e91f1c commit c68155e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/nextjs/pages/customize.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export function Stage() {
{isTrackReference(track) ? <VideoTrack {...track} /> : <p>Camera placeholder</p>}
<div className={myStyles['participant-indicators']}>
<div style={{ display: 'flex' }}>
<TrackMutedIndicator source={Track.Source.Microphone}></TrackMutedIndicator>
<TrackMutedIndicator source={track.source}></TrackMutedIndicator>
<TrackMutedIndicator source={Track.Source.Microphone} />
<TrackMutedIndicator source={track.source} />
</div>
{/* Overwrite styles: By passing class names, we can easily overwrite/extend the existing styles. */}
{/* In addition, we can still specify a style attribute and further customize the styles. */}
Expand Down

0 comments on commit c68155e

Please sign in to comment.