diff --git a/.github/workflows/cron-checks.yml b/.github/workflows/cron-checks.yml index 294d04d6e..bbb1ea4d8 100644 --- a/.github/workflows/cron-checks.yml +++ b/.github/workflows/cron-checks.yml @@ -41,33 +41,28 @@ jobs: strategy: matrix: include: - - ios: 18.5 - xcode: 16.3 - os: macos-15 + - ios: "26.1" + device: "iPhone 17 Pro" + setup_runtime: false + - ios: "18.5" device: "iPhone 16 Pro" setup_runtime: false - - ios: 17.5 - xcode: 15.4 - os: macos-14 + - ios: "17.5" device: "iPhone 15 Pro" - setup_runtime: false - - ios: 16.4 - xcode: 15.3 - os: macos-14 - device: "iPhone 14" setup_runtime: true - - ios: 15.5 - xcode: 15.4 - os: macos-14 + - ios: "16.4" + device: "iPhone 14 Pro" + setup_runtime: true + - ios: "15.5" device: "iPhone 13 Pro" setup_runtime: true fail-fast: false - runs-on: ${{ matrix.os }} + runs-on: macos-15 env: GITHUB_EVENT: ${{ toJson(github.event) }} ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} - XCODE_VERSION: ${{ matrix.xcode }} - IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" # For the Allure report + XCODE_VERSION: "26.1.1" + IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" steps: - uses: actions/checkout@v4.1.1 - uses: actions/download-artifact@v4 @@ -90,7 +85,7 @@ jobs: - name: Launch Allure TestOps run: bundle exec fastlane allure_launch cron:true - name: Run UI Tests (Debug) - run: bundle exec fastlane test_e2e device:"${{ matrix.device }} (${{ matrix.ios }})" cron:true test_without_building:true + run: bundle exec fastlane test_e2e device:"${{ env.IOS_SIMULATOR_DEVICE }}" cron:true test_without_building:true timeout-minutes: 90 env: STREAM_SDK_TEST_APP: ${{ secrets.STREAM_SDK_TEST_APP }} @@ -124,30 +119,26 @@ jobs: strategy: matrix: include: - - ios: 18.5 - xcode: 16.3 - os: macos-15 + - ios: "26.1" + device: "iPhone 17 Pro" + setup_runtime: false + - ios: "18.5" device: "iPhone 16 Pro" setup_runtime: false - - ios: 17.5 - xcode: 15.4 - os: macos-14 + - ios: "17.5" device: "iPhone 15 Pro" - setup_runtime: false - - ios: 16.4 - xcode: 15.3 - os: macos-14 + setup_runtime: true + - ios: "16.4" device: "iPhone 14 Pro" setup_runtime: true - - ios: 15.5 - xcode: 15.3 - os: macos-14 + - ios: "15.5" device: "iPhone 13 Pro" setup_runtime: true fail-fast: false - runs-on: ${{ matrix.os }} + runs-on: macos-15 env: - XCODE_VERSION: ${{ matrix.xcode }} + XCODE_VERSION: "26.1.1" + IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" steps: - uses: actions/checkout@v4.1.1 - uses: ./.github/actions/bootstrap @@ -161,7 +152,7 @@ jobs: version: ${{ matrix.ios }} device: ${{ matrix.device }} - name: Run LLC Tests (Debug) - run: bundle exec fastlane test device:"${{ matrix.device }} (${{ matrix.ios }})" cron:true + run: bundle exec fastlane test device:"${{ env.IOS_SIMULATOR_DEVICE }}" cron:true timeout-minutes: 60 - name: Parse xcresult if: failure() @@ -196,17 +187,18 @@ jobs: run: bundle exec fastlane build_docs_test build-old-xcode: - name: Build SDKs (Xcode 15) + name: Build SDKs (Old Xcode) runs-on: macos-14 if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - name: Connect Bot uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} - uses: actions/checkout@v3.1.0 + - uses: ./.github/actions/xcode-cache - uses: ./.github/actions/ruby-cache - name: List Xcode versions run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" @@ -229,7 +221,7 @@ jobs: name: Automated Code Review runs-on: macos-14 env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - uses: actions/checkout@v4.1.1 - uses: ./.github/actions/bootstrap diff --git a/.github/workflows/smoke-checks.yml b/.github/workflows/smoke-checks.yml index ec44d4d65..e7960320f 100644 --- a/.github/workflows/smoke-checks.yml +++ b/.github/workflows/smoke-checks.yml @@ -25,7 +25,7 @@ concurrency: env: HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI - IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.5)" + IOS_SIMULATOR_DEVICE: "iPhone 17 Pro (26.1)" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_PR_NUM: ${{ github.event.pull_request.number }} @@ -133,7 +133,7 @@ jobs: name: Automated Code Review runs-on: macos-14 env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" if: ${{ github.event.inputs.record_snapshots_swiftui != 'true' && github.event.inputs.record_snapshots_uikit != 'true' }} steps: - uses: actions/checkout@v4.1.1 @@ -147,29 +147,30 @@ jobs: - run: bundle exec fastlane pod_lint if: startsWith(github.event.pull_request.head.ref, 'release/') - build-xcode15: - name: Build SDKs (Xcode 15) + build-old-xcode: + name: Build SDKs (Old Xcode) runs-on: macos-14 needs: test-llc-debug if: ${{ github.event.inputs.record_snapshots_swiftui != 'true' && github.event.inputs.record_snapshots_uikit != 'true' }} env: - XCODE_VERSION: "15.4" + XCODE_VERSION: "16.1" steps: - name: Connect Bot uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} - uses: actions/checkout@v3.1.0 + - uses: ./.github/actions/xcode-cache - uses: ./.github/actions/ruby-cache - name: List Xcode versions run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" - name: Build LLC - run: bundle exec fastlane test device:"iPhone 15" build_for_testing:true + run: bundle exec fastlane test device:"iPhone 16" build_for_testing:true timeout-minutes: 25 - name: Build SwiftUI - run: bundle exec fastlane test_swiftui device:"iPhone 15" build_for_testing:true + run: bundle exec fastlane test_swiftui device:"iPhone 16" build_for_testing:true - name: Build UIKit - run: bundle exec fastlane test_uikit device:"iPhone 15" build_for_testing:true + run: bundle exec fastlane test_uikit device:"iPhone 16" build_for_testing:true timeout-minutes: 25 - name: Build XCFrameworks run: bundle exec fastlane build_xcframeworks diff --git a/.swiftformat b/.swiftformat index ee7e52224..29fe22c5a 100644 --- a/.swiftformat +++ b/.swiftformat @@ -1,6 +1,6 @@ # Stream rules --header "\nCopyright © {year} Stream.io Inc. All rights reserved.\n" ---swiftversion 5.9 +--swiftversion 5.10 # Use allow-list --rules blankLinesAroundMark diff --git a/Githubfile b/Githubfile index ef002290f..ad0796356 100644 --- a/Githubfile +++ b/Githubfile @@ -5,7 +5,6 @@ export XCRESULTS_VERSION='1.19.1' export STREAM_VIDEO_BUDDY_VERSION='1.6.23' export PLAYWRIGHT_VERSION='1.41.2' export YEETD_VERSION='1.0' -export MINT_VERSION='0.17.5' export SONAR_VERSION='6.2.1.4610' export IPSW_VERSION='3.1.592' export INTERFACE_ANALYZER_VERSION='1.0.7' diff --git a/Package.swift b/Package.swift index aafde697b..2470e6437 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.9 +// swift-tools-version:5.10 import Foundation import PackageDescription diff --git a/Scripts/bootstrap.sh b/Scripts/bootstrap.sh index fd5c43f13..622a77191 100755 --- a/Scripts/bootstrap.sh +++ b/Scripts/bootstrap.sh @@ -30,7 +30,7 @@ if [ "${SKIP_SWIFT_BOOTSTRAP:-}" != true ]; then puts "Install SwiftLint v${SWIFT_LINT_VERSION}" DOWNLOAD_URL="https://github.com/realm/SwiftLint/releases/download/${SWIFT_LINT_VERSION}/SwiftLint.pkg" DOWNLOAD_PATH="/tmp/SwiftLint-${SWIFT_LINT_VERSION}.pkg" - curl -sL "$DOWNLOAD_URL" -o "$DOWNLOAD_PATH" + wget "$DOWNLOAD_URL" -O "$DOWNLOAD_PATH" sudo installer -pkg "$DOWNLOAD_PATH" -target / swiftlint version @@ -39,7 +39,7 @@ if [ "${SKIP_SWIFT_BOOTSTRAP:-}" != true ]; then DOWNLOAD_PATH="/tmp/swiftformat-${SWIFT_FORMAT_VERSION}.zip" BIN_PATH="/usr/local/bin/swiftformat" brew uninstall swiftformat || true - curl -sL "$DOWNLOAD_URL" -o "$DOWNLOAD_PATH" + wget "$DOWNLOAD_URL" -O "$DOWNLOAD_PATH" unzip -o "$DOWNLOAD_PATH" -d /tmp/swiftformat-${SWIFT_FORMAT_VERSION} sudo mv /tmp/swiftformat-${SWIFT_FORMAT_VERSION}/swiftformat "$BIN_PATH" sudo chmod +x "$BIN_PATH" @@ -50,7 +50,7 @@ if [ "${SKIP_SWIFT_BOOTSTRAP:-}" != true ]; then DOWNLOAD_PATH="/tmp/swiftgen-${SWIFT_GEN_VERSION}.zip" INSTALL_DIR="/usr/local/lib/swiftgen" BIN_PATH="/usr/local/bin/swiftgen" - curl -sL "$DOWNLOAD_URL" -o "$DOWNLOAD_PATH" + wget "$DOWNLOAD_URL" -O "$DOWNLOAD_PATH" sudo rm -rf "$INSTALL_DIR" sudo mkdir -p "$INSTALL_DIR" sudo unzip -o "$DOWNLOAD_PATH" -d "$INSTALL_DIR" @@ -62,7 +62,7 @@ fi if [[ ${INSTALL_SONAR-default} == true ]]; then puts "Install sonar scanner v${SONAR_VERSION}" DOWNLOAD_URL="https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_VERSION}-macosx-x64.zip" - curl -sL "${DOWNLOAD_URL}" -o ./fastlane/sonar.zip + wget "${DOWNLOAD_URL}" -O ./fastlane/sonar.zip cd fastlane unzip sonar.zip rm sonar.zip @@ -74,12 +74,12 @@ fi if [[ ${INSTALL_ALLURE-default} == true ]]; then puts "Install allurectl v${ALLURECTL_VERSION}" DOWNLOAD_URL="https://github.com/allure-framework/allurectl/releases/download/${ALLURECTL_VERSION}/allurectl_darwin_amd64" - curl -sL "${DOWNLOAD_URL}" -o ./fastlane/allurectl + wget "${DOWNLOAD_URL}" -O ./fastlane/allurectl chmod +x ./fastlane/allurectl puts "Install xcresults v${XCRESULTS_VERSION}" DOWNLOAD_URL="https://github.com/eroshenkoam/xcresults/releases/download/${XCRESULTS_VERSION}/xcresults" - curl -sL "${DOWNLOAD_URL}" -o ./fastlane/xcresults + wget "${DOWNLOAD_URL}" -O ./fastlane/xcresults chmod +x ./fastlane/xcresults fi diff --git a/StreamVideo-XCFramework.podspec b/StreamVideo-XCFramework.podspec index 28f83dab6..d25f2e4c0 100644 --- a/StreamVideo-XCFramework.podspec +++ b/StreamVideo-XCFramework.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true diff --git a/StreamVideo.podspec b/StreamVideo.podspec index 56ffc93d1..af3563b67 100644 --- a/StreamVideo.podspec +++ b/StreamVideo.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true diff --git a/StreamVideoSwiftUI-XCFramework.podspec b/StreamVideoSwiftUI-XCFramework.podspec index 503c9b2d1..c71bc9a77 100644 --- a/StreamVideoSwiftUI-XCFramework.podspec +++ b/StreamVideoSwiftUI-XCFramework.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true @@ -20,5 +20,5 @@ Pod::Spec.new do |spec| spec.vendored_frameworks = "#{spec.module_name}.xcframework" spec.preserve_paths = "#{spec.module_name}.xcframework/*" - spec.dependency('StreamVideo-XCFramework', "#{spec.version}") + spec.dependency('StreamVideo-XCFramework', spec.version.to_s) end diff --git a/StreamVideoSwiftUI.podspec b/StreamVideoSwiftUI.podspec index 9a741522a..d7e2fa3ae 100644 --- a/StreamVideoSwiftUI.podspec +++ b/StreamVideoSwiftUI.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true @@ -20,5 +20,5 @@ Pod::Spec.new do |spec| spec.exclude_files = ["Sources/#{spec.name}/**/*_Tests.swift", "Sources/#{spec.name}/**/*_Mock.swift"] spec.resource_bundles = { spec.name => ["Sources/#{spec.name}/Resources/**/*"] } - spec.dependency('StreamVideo', "#{spec.version}") + spec.dependency('StreamVideo', spec.version.to_s) end diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-dark.png index 98ec586fa..0a7128006 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-light.png index ae7f7a4ca..6b37a99d5 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_activeCall_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-dark.png index 360c14d46..ac0f495e9 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-light.png index 80e3c2368..7dee81076 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateful/__Snapshots__/CallControlsView_Tests/test_callControlsView_ringingCall_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-dark.png index 79aadda68..e2e9414da 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-light.png index 97c8b9828..0c6a4af2a 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessAudioOutputIconView_Tests/test_appearance_audioOutputOn_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-dark.png index c2ec0c5d0..5fcfe54d1 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-light.png index 153f7ac31..176ca5091 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOff_hasPermission_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-dark.png index a46530cb8..5269f4c2f 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-light.png index 824ea3726..671ec2d57 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_hasPermission_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-dark.png index c2ec0c5d0..5fcfe54d1 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-light.png index 153f7ac31..176ca5091 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_canRequest_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png index c396e764f..d04aa97be 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png index b38badf79..0ae320f0d 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessMicrophoneIconView_Tests/test_appearance_micOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-dark.png index 79aadda68..e2e9414da 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-light.png index 97c8b9828..0c6a4af2a 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_audioDefaultDeviceSpeaker_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-dark.png index 79aadda68..e2e9414da 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-light.png index 97c8b9828..0c6a4af2a 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessSpeakerIconView_Tests/test_appearance_cameraOn_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-dark.png index b142f1d19..438a06dfd 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-light.png index d761cc98d..56c49d544 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessToggleCameraIconView_Tests/test_appearance_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png index 7732bfae2..c5b09c9d8 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png index affc65fcd..73708bee2 100644 Binary files a/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/CallControls/Stateless/__Snapshots__/StatelessVideoIconView_Tests/test_appearance_videoOn_noPermission_cannotRequestPermission_wasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png index 9a89744dc..6d15e07cb 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png index d817ee505..4c8f81cbd 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png index c81629123..bb7ce9ee5 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png index 09a25cae8..08aa1c565 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png index 8fd538aec..be852cf48 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png index 6305695dd..b3964f35f 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png index 9a89744dc..6d15e07cb 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png index d817ee505..4c8f81cbd 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfoAndSmallerSize_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png index c81629123..bb7ce9ee5 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png index 09a25cae8..08aa1c565 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withAllInfo_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png index 8fd538aec..be852cf48 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png index 6305695dd..b3964f35f 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/HorizontalParticipantsListView_Tests/test_layout_participantsWithoutAudio_withoutAllInfo_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-dark.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-dark.png index b6891c4d5..c41fc70e8 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-dark.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-light.png b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-light.png index d6780a1ae..9d06fe5a6 100644 Binary files a/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-light.png and b/StreamVideoSwiftUITests/CallView/LayoutComponents/__Snapshots__/SpotlightSpeakerView_Tests/test_appearance.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-dark.png index 676bd47b9..f5f98a4d7 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-light.png index d3ea855e1..1302c87e2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/CallDurationView_Tests/test_callDurationView_durationIsGreaterThanZeroAndCallIsRecording_viewWasConfiguredCorrectly.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-excellent.png index 13e674f65..b8a4d7c29 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-good.png index be270bc39..df3254096 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-poor.png index dae3a16c6..93e8c19fe 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-unknown.png index 6a9172508..f16893633 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-dark-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-excellent.png index f071508e4..c8b430e11 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-good.png index 647cd5b3d..7c6f003e6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-poor.png index aacabf762..791f6bc55 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-unknown.png index 94ac17561..b5ba7803b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantConnectionQuality_snapshot.default-light-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-dark.png index edb9caabf..89c778fb1 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-light.png index 47dd80ca8..0138ad494 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantSpeaking_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-dark.png index edb9caabf..89c778fb1 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-light.png index 47dd80ca8..0138ad494 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithAudio_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-dark.png index 13e674f65..b8a4d7c29 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-light.png index f071508e4..c8b430e11 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsFullScreenLayout_Tests/test_fullscreen_participantWithoutAudio_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_1_participants.png index c1c6cb54d..cd7cbd3bc 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_2_participants.png index e751b452b..cee44a060 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_3_participants.png index 854fbf009..678cced46 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_4_participants.png index 1829c5a66..0eb295b6c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_5_participants.png index c2653239d..3820af767 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_6_participants.png index 63387d8af..96a0b912d 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_7_participants.png index 9849f231f..b3a71c786 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_8_participants.png index 210f238ed..b931380b2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_9_participants.png index 210f238ed..b931380b2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-dark-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_1_participants.png index 2d73ca628..af1ff5436 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_2_participants.png index 821b4392c..989ba1111 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_3_participants.png index 7ffb7bd07..840507143 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_4_participants.png index 39fc95c14..7331bf737 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_5_participants.png index f2625f8f5..cc5aded37 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_6_participants.png index 2b058da1c..4249829be 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_7_participants.png index 8739d03d4..07c595a47 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_8_participants.png index eaba5ad40..8f89c1481 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_9_participants.png index eaba5ad40..8f89c1481 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithAudio_snapshot.default-light-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_1_participants.png index 99d6bd09a..bd55c5fed 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_2_participants.png index a991b8e43..ed829ff5e 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_3_participants.png index 9ce2f8b2f..6b9a0a27e 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_4_participants.png index 0cf6d0b00..eeb67b74f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_5_participants.png index 899fad956..589ace099 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_6_participants.png index cba246230..1900d4e9e 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_7_participants.png index b9c40a640..5f35b90af 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_8_participants.png index 687df31fc..73ecec360 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_9_participants.png index 687df31fc..73ecec360 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-dark-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_1_participants.png index e6b0aed9a..a77011270 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_2_participants.png index c100673d1..3bd520e05 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_3_participants.png index ed9f3b4a0..d054aed36 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_4_participants.png index b6e037343..05e72cddf 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_5_participants.png index cee96b8a0..b0217fd8e 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_6_participants.png index 606484838..54c085303 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_7_participants.png index 71b51d104..b02348a6c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_8_participants.png index f2681dc1c..f863c7130 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_9_participants.png index f2681dc1c..f863c7130 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantWithoutAudio_snapshot.default-light-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-excellent.png index 687df31fc..73ecec360 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-good.png index 970a5e584..dcf432d36 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-poor.png index 6ebfab73c..26c42e379 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-unknown.png index 5d72d0dea..054a1465b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-dark-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-excellent.png index f2681dc1c..f863c7130 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-good.png index 9f69cc1ad..c96caa2b2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-poor.png index 8309200b7..0c55883c0 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-unknown.png index c2b068712..e013f2919 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsConnectionQuality_snapshot.default-light-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_1_participants.png index 99d6bd09a..bd55c5fed 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_2_participants.png index e59293c48..fa64b8b67 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_3_participants.png index 8bb483712..6811c8a56 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_4_participants.png index bfc4ab1fc..7676ff7d1 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_5_participants.png index 89deddb88..5d5feb1fa 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_6_participants.png index 6a5ce5d9a..7c8b6b152 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_7_participants.png index d38f80add..8e3ceb40a 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_8_participants.png index ec1a47dc5..eb93ddeed 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_9_participants.png index ec1a47dc5..eb93ddeed 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-dark-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_1_participants.png index e6b0aed9a..a77011270 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_2_participants.png index 938cc6886..b49ab5365 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_3_participants.png index 93986979b..24bd946bd 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_4_participants.png index b4231e370..e58670311 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_5_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_5_participants.png index 5f326326e..93939e141 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_5_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_5_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_6_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_6_participants.png index edf789a4d..85aa1a486 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_6_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_6_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_7_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_7_participants.png index 490dac2e5..881c0e7d6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_7_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_7_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_8_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_8_participants.png index f26422c43..556a715c8 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_8_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_8_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_9_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_9_participants.png index f26422c43..556a715c8 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_9_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsGridLayout_Tests/test_grid_participantsSpeaking_snapshot.default-light-with_9_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_1_participants.png index 85ab36e17..53c127664 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_2_participants.png index 122703c8e..63426c5cc 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_3_participants.png index 122703c8e..63426c5cc 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_4_participants.png index 122703c8e..63426c5cc 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_1_participants.png index bc125b01a..682ce5d43 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_2_participants.png index 6af3a2e29..65da5db5c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_3_participants.png index 6af3a2e29..65da5db5c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_4_participants.png index 6af3a2e29..65da5db5c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithAudio_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_1_participants.png index 87578bade..05e9a2f85 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_2_participants.png index 124989bcd..019bbc611 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_3_participants.png index 124989bcd..019bbc611 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_4_participants.png index 124989bcd..019bbc611 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_1_participants.png index a59ed56b4..06210ab9c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_2_participants.png index ba94297c9..21c75642f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_3_participants.png index ba94297c9..21c75642f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_4_participants.png index ba94297c9..21c75642f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantWithoutAudio_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-excellent.png index 124989bcd..019bbc611 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-good.png index f33e3b9a1..d2e3d9a7a 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-poor.png index 98b3f49b9..84cb54ea6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-unknown.png index b309fb0a5..e4ef7dc62 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-dark-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-excellent.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-excellent.png index ba94297c9..21c75642f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-excellent.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-excellent.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-good.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-good.png index 23be35b0f..99f6f3c6a 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-good.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-good.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-poor.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-poor.png index e144ee12c..4fadb61a2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-poor.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-poor.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-unknown.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-unknown.png index e32b3986f..43ea173a2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-unknown.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsConnectionQuality_snapshot.default-light-unknown.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-dark.png index 124989bcd..019bbc611 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-light.png index ba94297c9..21c75642f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ParticipantsSpotlightLayout_Tests/test_spotlight_participantsSpeaking_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.default-light.png deleted file mode 100644 index 64a88a922..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index 4eb6f5cbc..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.rightToLeftLayout-default.png deleted file mode 100644 index e8a1d165a..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.small-dark.png deleted file mode 100644 index 10f5b3c6e..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraAndMicPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.default-light.png deleted file mode 100644 index 28db69022..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index 20fd561b0..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.rightToLeftLayout-default.png deleted file mode 100644 index 2a3a64cf3..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.small-dark.png deleted file mode 100644 index 26c05a6fa..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingCameraPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.default-light.png deleted file mode 100644 index 21ffe23d1..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index 9c950feb3..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.rightToLeftLayout-default.png deleted file mode 100644 index 0af5aba3d..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.small-dark.png deleted file mode 100644 index fd7f5ce60..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_missingMissingPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png index 64a88a922..f9b8232ad 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png index 4eb6f5cbc..81db29c5b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png index e8a1d165a..615e12292 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png index 10f5b3c6e..893e48c8c 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png index 28db69022..658a45192 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png index 20fd561b0..8246f52df 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png index 2a3a64cf3..c6c6b6f35 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png index 26c05a6fa..fe1392b94 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png index 21ffe23d1..9fa9ec389 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png index 9c950feb3..a13ecd1bd 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png index 0af5aba3d..a4c37b537 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png index fd7f5ce60..99e892793 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.default-light.png index 28db69022..658a45192 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.extraExtraExtraLarge-light.png index 20fd561b0..8246f52df 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.rightToLeftLayout-default.png index 2a3a64cf3..c6c6b6f35 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.small-dark.png index 26c05a6fa..fe1392b94 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresCamera_missingCamera.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.default-light.png index 21ffe23d1..9fa9ec389 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png index 9c950feb3..a13ecd1bd 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png index 0af5aba3d..a4c37b537 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.small-dark.png index fd7f5ce60..99e892793 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPad_requiresMicrophone_missingMicrophone.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.default-light.png deleted file mode 100644 index 06e9e2511..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index 3df108ab1..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.rightToLeftLayout-default.png deleted file mode 100644 index 51b38fb35..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.small-dark.png deleted file mode 100644 index 2421ac0ac..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraAndMicPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.default-light.png deleted file mode 100644 index 28f666bb7..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index d5dc37fa3..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.rightToLeftLayout-default.png deleted file mode 100644 index 56a9e2a66..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.small-dark.png deleted file mode 100644 index a24e85b55..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingCameraPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.default-light.png deleted file mode 100644 index 180abd75e..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.default-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.extraExtraExtraLarge-light.png deleted file mode 100644 index 417084b1d..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.extraExtraExtraLarge-light.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.rightToLeftLayout-default.png deleted file mode 100644 index 700bd0004..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.rightToLeftLayout-default.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.small-dark.png deleted file mode 100644 index 761881b40..000000000 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_missingMissingPermissions.small-dark.png and /dev/null differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png index 06e9e2511..7097d30a6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png index 3df108ab1..d8411871a 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png index 51b38fb35..0eebf108b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png index 2421ac0ac..5d31df404 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraAndMicPermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png index 28f666bb7..303db8ffd 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png index d5dc37fa3..01c8902d2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png index 56a9e2a66..7acf1c427 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png index a24e85b55..52b70a47b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingCameraPermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png index 180abd75e..44fb18a4d 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png index 417084b1d..a0d6a611d 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png index 700bd0004..878b15590 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png index 761881b40..1265af7f6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCameraAndMicrophone_missingMicrophonePermissions.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.default-light.png index 28f666bb7..303db8ffd 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.extraExtraExtraLarge-light.png index d5dc37fa3..01c8902d2 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.rightToLeftLayout-default.png index 56a9e2a66..7acf1c427 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.small-dark.png index a24e85b55..52b70a47b 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresCamera_missingCamera.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.default-light.png index 180abd75e..44fb18a4d 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png index 417084b1d..a0d6a611d 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.extraExtraExtraLarge-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png index 700bd0004..878b15590 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.rightToLeftLayout-default.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.small-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.small-dark.png index 761881b40..1265af7f6 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.small-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/PermissionsPromptView_Tests/test_rendering_iPhone_requiresMicrophone_missingMicrophone.small-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-dark.png index fa8c2231e..a0262dbcc 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-light.png index 0f6f50bb5..d609dc26f 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/RecordingView_Tests/test_recordingView_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-dark.png index 38a5d1717..fc96453f7 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-light.png b/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-light.png index 0843cd4a1..838c5a573 100644 Binary files a/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallView/__Snapshots__/ScreenSharingView_Tests/test_screenSharingView_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-dark.png index 7bed670d4..2d1109eea 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-light.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-light.png index 7bed670d4..2d1109eea 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallConnectingView_Tests/test_callConnectingView_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-dark-with_4_participants.png index 9a619701a..dec220112 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-light-with_4_participants.png index 83e819594..f05255c2e 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isCalling_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-dark-with_4_participants.png index 9a619701a..dec220112 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-light-with_4_participants.png index 83e819594..f05255c2e 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/CallingGroupView_Tests/test_callingGroupView_isNotCalling_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_1_participants.png index 8031cb883..53f7c70c5 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_2_participants.png index f889da83f..cfe07d19d 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_3_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_3_participants.png index a39bffdca..6efb89284 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_3_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_4_participants.png index 055e6d0f3..ad86c4d9e 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-dark-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_1_participants.png index 0edcb6a75..89670bedc 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_2_participants.png index c81ecf1b1..af3d56679 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_3_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_3_participants.png index ec3d757f9..50510fdc7 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_3_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_3_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_4_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_4_participants.png index f876deece..f9587a6a4 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_4_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/IncomingCallView_Tests/test_incomingCallView_snapshot.default-light-with_4_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_0_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_0_participants.png index c1e2ed6fd..dc86ec32d 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_0_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_0_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_1_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_1_participants.png index c6e1f67e1..0285f877e 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_1_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_2_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_2_participants.png index edd56c177..290b5b38b 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_2_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-dark-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_0_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_0_participants.png index 3f4ef5f59..bff82ac68 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_0_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_0_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_1_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_1_participants.png index 525f59977..1abc9c843 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_1_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_1_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_2_participants.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_2_participants.png index e8feb7b2c..266d65335 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_2_participants.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/LobbyView_Tests/test_lobbyView_snapshot.default-light-with_2_participants.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_micOff_snapshot.default-light.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_micOff_snapshot.default-light.png index 2eb6855de..af16fca0f 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_micOff_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_micOff_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_pinned_snapshot.default-light.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_pinned_snapshot.default-light.png index 3607f4871..e707012c1 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_pinned_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_pinned_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_withoutAudioLevels_snapshot.default-light.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_withoutAudioLevels_snapshot.default-light.png index 2eb6855de..af16fca0f 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_withoutAudioLevels_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/MicrophoneCheckView_Tests/test_microphoneCheckView_withoutAudioLevels_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-dark.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-dark.png index 0369a00ee..d5fccf225 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-dark.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-light.png b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-light.png index 9b1dbe992..2df66d22c 100644 Binary files a/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-light.png and b/StreamVideoSwiftUITests/CallingViews/__Snapshots__/OutgoingCallView_Tests/test_outgoingCallView_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-dark.png b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-dark.png index 146ef6d43..41eddde91 100644 Binary files a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-dark.png and b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-light.png b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-light.png index 0073adc75..569143f8a 100644 Binary files a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-light.png and b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-dark.png b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-dark.png index effae29c1..a8a196ae1 100644 Binary files a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-dark.png and b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-light.png b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-light.png index ab222d4f0..9943a17cb 100644 Binary files a/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-light.png and b/StreamVideoSwiftUITests/Livestreaming/__Snapshots__/LivestreamPlayer_Tests/test_livestreamPlayer_snapshotHideParticipantCount.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-dark.png index 1f2773044..f390a1292 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-light.png index be1b8cdc4..23dd36930 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_participant.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-dark.png index 6ae3a1021..be134a247 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-light.png index 6ae3a1021..be134a247 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureContentViewTests/test_content_screenSharing.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-dark.png index cc7758a62..da4736a84 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-light.png index fe3518d1d..5835b767c 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioFalse.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-dark.png index cc7758a62..da4736a84 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-light.png index fe3518d1d..5835b767c 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoFalse_hasAudioTrue.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-dark.png index 3ef91b8ce..645296ded 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-light.png index aede5a050..ee1a5746d 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioFalse.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-dark.png index 3ef91b8ce..645296ded 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-light.png index aede5a050..ee1a5746d 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureParticipantModifierTests/test_modifier_participant_hasVideoTrue_hasAudioTrue.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-dark.png index 8b895237e..b0b8a710b 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-light.png index ef9604096..c51765611 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureScreenSharingViewTests/test_content.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-dark.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-dark.png index 1f2773044..f390a1292 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-dark.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-light.png b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-light.png index be1b8cdc4..23dd36930 100644 Binary files a/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-light.png and b/StreamVideoSwiftUITests/Utils/PictureInPicture/__Snapshots__/PictureInPictureVideoParticipantViewTests/test_content.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-dark.png index c57b80b4e..e6d682dac 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-light.png index f9d8b2320..f5f408711 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_allCorners.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-dark.png index 10d3ba193..c5c41d135 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-light.png index f714dc586..23d593806 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottom.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-dark.png index 5ddf5f86a..17757369a 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-light.png index 9887cacd9..0a82d512a 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomLeft.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-dark.png index 39c584c67..e7dd40cde 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-light.png index b9b0d8544..82d0f7ec3 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusBottomRight.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-dark.png index 7270651f9..aab4c4be2 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-light.png index 31d2d79ae..a0cbe7417 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeading.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-dark.png index db157e967..1747e288f 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-light.png index 2f7b1b1fb..bf5c0b331 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusLeadingDiagonal.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-dark.png index eae2d3420..bb153d2ba 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-light.png index 17d8e6edb..0625faf98 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTop.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-dark.png index 48eda9f0b..92e449434 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-light.png index d64a628e0..2b79a3b05 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopLeft.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-dark.png index 7a12814f6..9209b89b3 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-light.png index 27b6a3f8d..e2315b2da 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTopRight.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-dark.png index 5adc4da14..238274611 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-light.png index 579b730fc..a2cf6abbb 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailing.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-dark.png index 90fcb566e..1d5b3d5f2 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-light.png index db1afc0c8..86872c4f6 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/CornerClipper_Tests/test_cornerClipper_cornerRadiusTrailingDiagonal.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-dark.png index 88413fac3..7b1d3b339 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-light.png index d1f30c644..094fc5e52 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-dark.png index a89d13801..95fa074e8 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-light.png index 144e2015a..13bc721fb 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_errorSnapshotBottom.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-dark.png index ec0acb8d0..c7e3a8601 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-light.png index 804205b81..99c1e9cbb 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_infoSnapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-dark.png index 293f0442d..dcff69e6f 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-light.png index 77ad718f0..3142825e2 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_successSnapshot.default-light.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-dark.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-dark.png index d5e990456..ce8791f0a 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-dark.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-dark.png differ diff --git a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-light.png b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-light.png index 1f4a858f2..839a7e5b8 100644 Binary files a/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-light.png and b/StreamVideoSwiftUITests/Utils/__Snapshots__/ToastView_Tests/test_toastView_warningSnapshot.default-light.png differ diff --git a/StreamVideoUIKit-XCFramework.podspec b/StreamVideoUIKit-XCFramework.podspec index f09ece22b..6cf1434fd 100644 --- a/StreamVideoUIKit-XCFramework.podspec +++ b/StreamVideoUIKit-XCFramework.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true @@ -20,6 +20,6 @@ Pod::Spec.new do |spec| spec.vendored_frameworks = "#{spec.module_name}.xcframework" spec.preserve_paths = "#{spec.module_name}.xcframework/*" - spec.dependency('StreamVideo-XCFramework', "#{spec.version}") - spec.dependency('StreamVideoSwiftUI-XCFramework', "#{spec.version}") + spec.dependency('StreamVideo-XCFramework', spec.version.to_s) + spec.dependency('StreamVideoSwiftUI-XCFramework', spec.version.to_s) end diff --git a/StreamVideoUIKit.podspec b/StreamVideoUIKit.podspec index 18b0ebae2..9d81c471d 100644 --- a/StreamVideoUIKit.podspec +++ b/StreamVideoUIKit.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |spec| spec.author = { 'getstream.io' => 'support@getstream.io' } spec.social_media_url = 'https://getstream.io' - spec.swift_version = '5.9' + spec.swift_version = '5.10' spec.platform = :ios, '13.0' spec.requires_arc = true @@ -19,6 +19,6 @@ Pod::Spec.new do |spec| spec.source_files = ["Sources/#{spec.name}/**/*.swift"] spec.exclude_files = ["Sources/#{spec.name}/**/*_Tests.swift", "Sources/#{spec.name}/**/*_Mock.swift"] - spec.dependency('StreamVideo', "#{spec.version}") - spec.dependency('StreamVideoSwiftUI', "#{spec.version}") + spec.dependency('StreamVideo', spec.version.to_s) + spec.dependency('StreamVideoSwiftUI', spec.version.to_s) end diff --git a/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-dark.png b/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-dark.png index 91ebc2a02..a6f9b61ba 100644 Binary files a/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-dark.png and b/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-dark.png differ diff --git a/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-light.png b/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-light.png index 76b3eda99..9e43e731c 100644 Binary files a/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-light.png and b/StreamVideoUIKitTests/__Snapshots__/CallViewController_Tests/test_callViewController_outgoingSnapshot.default-light.png differ diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ca285a911..d49781d60 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -7,7 +7,7 @@ require 'net/http' import 'Sonarfile' import 'Allurefile' -xcode_version = ENV['XCODE_VERSION'] || '16.3' +xcode_version = ENV['XCODE_VERSION'] || '26.1.1' xcode_project = 'StreamVideo.xcodeproj' sdk_names = ['StreamVideo', 'StreamVideoSwiftUI', 'StreamVideoUIKit'] podspec_names = ['StreamVideo', 'StreamVideo-XCFramework', 'StreamVideoSwiftUI', 'StreamVideoSwiftUI-XCFramework', 'StreamVideoUIKit', 'StreamVideoUIKit-XCFramework'] @@ -244,9 +244,7 @@ lane :test do |options| begin scan(scan_options) - rescue StandardError => e - UI.user_error!(e) unless options[:cron] - + rescue StandardError => _e failed_tests = retreive_failed_tests UI.important("Re-running #{failed_tests.size} failed tests ⌛️") scan(scan_options.merge(only_testing: failed_tests)) diff --git a/fastlane/Scanfile b/fastlane/Scanfile index 1f98751ac..e53e15035 100644 --- a/fastlane/Scanfile +++ b/fastlane/Scanfile @@ -1,16 +1,2 @@ -# For more information about this configuration visit -# https://docs.fastlane.tools/actions/scan/#scanfile - -# In general, you can use the options available -# fastlane scan --help - -devices(["iPhone 15 Pro"]) - -# Needed for Sonar -code_coverage(true) - -configuration("Test") - +configuration('Test') result_bundle(true) - -skip_slack(true)