Skip to content

Commit

Permalink
Update CallScreen.js
Browse files Browse the repository at this point in the history
Add max value for screen size #20
  • Loading branch information
ValarMarkhulis authored Dec 19, 2022
1 parent 3b3292e commit 2323661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/CallScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ function CallScreen({ clientId }) {
audio: true,
fake: fakeCamera(),
video: {
height: {min: 480},
width: {min: 640}
height: {min: 480, max: 480},
width: {min: 640, max: 640}
},
})
.then((stream) => {
Expand Down

0 comments on commit 2323661

Please sign in to comment.