|
@@ -14,11 +14,11 @@ StateListenerRegistry.register(
|
14
|
14
|
/* selector */ state => {
|
15
|
15
|
const participantCount = getParticipantCountWithFake(state);
|
16
|
16
|
|
17
|
|
- if (participantCount < 5) { // the dimensions are updated only when the participant count is lower than 5.
|
|
17
|
+ if (participantCount < 6) { // the dimensions are updated only when the participant count is lower than 6.
|
18
|
18
|
return participantCount;
|
19
|
19
|
}
|
20
|
20
|
|
21
|
|
- return 4; // make sure we don't update the dimensions.
|
|
21
|
+ return 5; // make sure we don't update the dimensions.
|
22
|
22
|
},
|
23
|
23
|
/* listener */ (_, store) => {
|
24
|
24
|
const state = store.getState();
|