Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandar-apostolov committed Sep 25, 2024
1 parent a7b194e commit 72f51f5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package io.getstream.video.android.compose.ui.components.call.renderer

import android.util.Log
import androidx.compose.animation.core.LinearOutSlowInEasing
import androidx.compose.animation.core.RepeatMode
import androidx.compose.animation.core.animateDpAsState
Expand Down Expand Up @@ -252,7 +251,9 @@ public fun ParticipantVideoRenderer(
val cameraDirection by call.camera.direction.collectAsStateWithLifecycle()
val me by call.state.me.collectAsStateWithLifecycle()
val mirror by remember(cameraDirection) {
mutableStateOf(cameraDirection == CameraDirection.Front && me?.sessionId == participant.sessionId)
mutableStateOf(
cameraDirection == CameraDirection.Front && me?.sessionId == participant.sessionId,
)
}
val videoRendererConfig = remember(mirror, videoFallbackContent) {
videoRenderConfig {
Expand Down

0 comments on commit 72f51f5

Please sign in to comment.