diff --git a/src/components/CallView/shared/LocalVideo.vue b/src/components/CallView/shared/LocalVideo.vue index fe864903fbd..8f0582fda4a 100644 --- a/src/components/CallView/shared/LocalVideo.vue +++ b/src/components/CallView/shared/LocalVideo.vue @@ -218,7 +218,7 @@ export default { }, avatarSize() { - if (this.isStripe || (!this.isBig && !this.isGrid)) { + if (!this.isBig && !this.isGrid) { return AVATAR.SIZE.LARGE } else if (!this.containerAspectRatio) { return AVATAR.SIZE.FULL diff --git a/src/components/CallView/shared/VideoVue.vue b/src/components/CallView/shared/VideoVue.vue index 0f15b82c381..75d18ca2006 100644 --- a/src/components/CallView/shared/VideoVue.vue +++ b/src/components/CallView/shared/VideoVue.vue @@ -335,7 +335,7 @@ export default { }, avatarSize() { - if (this.isStripe || (!this.isBig && !this.isGrid)) { + if (!this.isBig && !this.isGrid) { return AVATAR.SIZE.LARGE } else if (!this.containerAspectRatio) { return AVATAR.SIZE.FULL