Skip to content

Commit

Permalink
FCE-898 don't play local audio in fishjam chat (#187)
Browse files Browse the repository at this point in the history
## Description

Removes playing local audio from fishjam chat.

## Types of changes

- [x] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to
      not work as expected)
  • Loading branch information
czerwiukk authored Nov 20, 2024
1 parent 1c102c3 commit 4ff22b0
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@ export const RoomView = () => {
>
{localPeer && (
<>
<Tile
id="You"
name="You"
videoTrack={localPeer.cameraTrack}
audioTrack={localPeer.microphoneTrack}
/>
<Tile id="You" name="You" videoTrack={localPeer.cameraTrack} />
{localPeer.screenShareVideoTrack && (
<Tile
id="Your screen share"
Expand Down

0 comments on commit 4ff22b0

Please sign in to comment.