fix(thresholds) adjust thresholds for smaller width integrations (#10749)

allows chat button to be displayed when there should be enough space for it
This commit is contained in:
Avram Tudor 2022-01-10 12:45:46 +02:00 committed by GitHub
parent 7c8692902c
commit 22ffcf922a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,11 +19,11 @@ export const THRESHOLDS = [
order: [ 'microphone', 'camera', 'chat', 'participants' ]
},
{
width: 320,
width: 225,
order: [ 'microphone', 'camera', 'chat' ]
},
{
width: 270,
width: 200,
order: [ 'microphone', 'camera' ]
}
];