diff --git a/.github/workflows/compound-ios.yml b/.github/workflows/compound-ios.yml index b5f0ee886..52a4a1e9f 100644 --- a/.github/workflows/compound-ios.yml +++ b/.github/workflows/compound-ios.yml @@ -4,17 +4,22 @@ name: Compound on: + workflow_dispatch: + push: branches: [ develop ] - paths: [ 'compound-ios/**' ] + paths: + - 'compound-ios/**' pull_request: - paths: [ 'compound-ios/**' ] + types: [opened, synchronize, reopened] + paths: + - 'compound-ios/**' jobs: tests: - runs-on: macos-15 + runs-on: macos-26 timeout-minutes: 15 concurrency: @@ -27,7 +32,7 @@ jobs: - uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2 #v1.2.3 - name: Configure Xcode 26 - run: sudo xcode-select -s /Applications/Xcode_26.0.app + run: sudo xcode-select -s /Applications/Xcode_26.1_Release_Candidate.app - name: Install sourcery run: brew install sourcery @@ -37,11 +42,11 @@ jobs: run: sourcery --config Tools/Sourcery/PreviewTestsConfig.yml - name: Create simulator - run: xcrun simctl create "Snapshots" "iPhone SE (3rd generation)" "com.apple.CoreSimulator.SimRuntime.iOS-26-0" + run: xcrun simctl create "Snapshots" "iPhone SE (3rd generation)" "com.apple.CoreSimulator.SimRuntime.iOS-26-1" - name: Run tests working-directory: compound-ios - run: set -o pipefail && xcodebuild test -scheme 'Compound' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=Snapshots,OS=26.0.1' -skipPackagePluginValidation -resultBundlePath Logs/CompoundTests.xcresult | xcbeautify --renderer github-actions + run: set -o pipefail && xcodebuild test -scheme 'Compound' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=Snapshots,OS=26.1' -skipPackagePluginValidation -resultBundlePath Logs/CompoundTests.xcresult | xcbeautify --renderer github-actions - name: Zip artifacts if: failure() # We only care about artefacts if the tests fail diff --git a/PreviewTests/Sources/PreviewTests.swift b/PreviewTests/Sources/PreviewTests.swift index 0167571e3..1013322fe 100644 --- a/PreviewTests/Sources/PreviewTests.swift +++ b/PreviewTests/Sources/PreviewTests.swift @@ -15,10 +15,18 @@ import XCTest @MainActor class PreviewTests: XCTestCase { + private struct SnapshotDevice { + let name: String + let device: String + } + private let deviceConfig: ViewImageConfig = .iPhoneX private let simulatorDevice: String? = "iPhone14,6" // iPhone SE 3rd Generation private let requiredOSVersion = (major: 26, minor: 1) - private let snapshotDevices = ["iPhone 16", "iPad"] + // The key is the name we will give to the snapshot + // The value is the actual device that will be used to render the preview + private let snapshotDevices: [SnapshotDevice] = [.init(name: "iPhone", device: "iPhone 17"), + .init(name: "iPad", device: "iPad")] private var recordMode: SnapshotTestingConfiguration.Record = .missing override func setUp() { @@ -78,9 +86,9 @@ class PreviewTests: XCTestCase { var sanitizedSuiteName = String(testName.suffix(testName.count - "test".count).dropLast(2)) sanitizedSuiteName = sanitizedSuiteName.prefix(1).lowercased() + sanitizedSuiteName.dropFirst() - for deviceName in snapshotDevices { - guard var device = PreviewDevice(rawValue: deviceName).snapshotDevice() else { - fatalError("Unknown device name: \(deviceName)") + for snapshotDevice in snapshotDevices { + guard var device = PreviewDevice(rawValue: snapshotDevice.device).snapshotDevice() else { + fatalError("Unknown device name: \(snapshotDevice.device)") } // Ignore specific device safe area (using the workaround value to fix rendering issues). device.safeArea = .one @@ -89,9 +97,9 @@ class PreviewTests: XCTestCase { var testName = "" if let displayName = preview.displayName { - testName = "\(displayName)-\(deviceName)-\(localeCode)" + testName = "\(displayName)-\(snapshotDevice.name)-\(localeCode)" } else { - testName = "\(deviceName)-\(localeCode)-\(step)" + testName = "\(snapshotDevice.name)-\(localeCode)-\(step)" } let isScreen = switch preview.layout { @@ -167,7 +175,7 @@ private class SnapshotPreferences: @unchecked Sendable { private extension PreviewDevice { func snapshotDevice() -> ViewImageConfig? { switch rawValue { - case "iPhone 16", "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10": + case "iPhone 17", "iPhone 16", "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10": return .iPhoneX case "iPhone 6", "iPhone 6s", "iPhone 7", "iPhone 8": return .iPhone8 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Chats-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bloomModifier.Spaces-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/callNotificationRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-en-GB-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-en-GB-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-pseudo-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-pseudo-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/copyTextButton.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreenHeaderView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fileMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Constrained-layout-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.Normal-Layout-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenEmptyStateView.View-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenNewSoundBanner.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Notifications-State-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Actions-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.Loading-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.RestrictedJoinable-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Banned-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Forbidden-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InviteRequired-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Invited-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.InvitedWithHiddenAvatars-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Joinable-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knockable-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Knocked-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.Restricted-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreenSpace.RestrictedJoinable-Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/joinedMembersBadgeView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Long-reason-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.Short-reason-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListEmptyStateView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Loading-state-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/labsScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceRoomDetailsCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Last-Space-Admin-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Many-Rooms-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.No-Rooms-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/leaveSpaceView.Only-Admin-Rooms-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/locationRoomTimelineView.Bubbles-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.Caption-warning-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-no-display-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationPermissionsScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/paginationIndicatorRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pillViewOnBubble.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-background-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.With-chrome-and-no-background-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Without-chrome-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Disclosed-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Undisclosed-Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.Loading-Member-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-en-GB-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-en-GB-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-pseudo-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-pseudo-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersEmptyStateView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-en-GB-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-pseudo-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Ask-to-join-room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-space-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/separatorMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-en-GB-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-pseudo-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Challenge-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Accepting-Verification-Request-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Cancelled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Declining-Challenge-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Initiator-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-Device-Responder-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Initiator-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Request-Accepted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Requesting-Verification-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.SAS-Verification-started-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Showing-Challenge-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Starting-SAS-Verification-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.Device-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-3.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-3.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-4.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-en-GB-4.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-1.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-1.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-2.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-2.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-3.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-3.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-4.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-pseudo-4.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderTopicSheetView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.Owner-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spaceSettingsScreen.User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/spacesAnnouncementSheetView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-RTL-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Mock-Timeline-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Replies-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Authenticity-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Identity-Changed-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-with-Caption-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Own-Unsigned-Devices-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unencrypted-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unknown-failure-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-Devices-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/unsupportedRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorModalView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-en-GB.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-en-GB.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-pseudo.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-pseudo.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageMediaEventsTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessagePreviewComposer.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingButton.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomPlaybackView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRoomTimelineView.iPhone-pseudo-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-en-GB-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-en-GB-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-en-GB-0.png diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-pseudo-0.png similarity index 100% rename from PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-pseudo-0.png rename to PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-pseudo-0.png diff --git a/UITests/Sources/Application.swift b/UITests/Sources/Application.swift index 40503516e..ded5cf691 100644 --- a/UITests/Sources/Application.swift +++ b/UITests/Sources/Application.swift @@ -35,11 +35,11 @@ enum Application { private static func checkEnvironments() { let requirediPhoneSimulator = "iPhone18,3" // iPhone 17 let requirediPadSimulator = "iPad15,7" // iPad (A16) - let requiredOSVersion = 26 + let requiredOSVersion = (major: 26, minor: 1) let osVersion = ProcessInfo().operatingSystemVersion - guard osVersion.majorVersion == requiredOSVersion else { - fatalError("Switch to iOS \(requiredOSVersion) for these tests.") + guard osVersion.majorVersion == requiredOSVersion.major, osVersion.minorVersion == requiredOSVersion.minor else { + fatalError("Switch to iOS \(requiredOSVersion.major).\(requiredOSVersion.minor) for these tests.") } guard let deviceModel = ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"] else { @@ -48,9 +48,6 @@ enum Application { guard deviceModel == requirediPhoneSimulator || deviceModel == requirediPadSimulator else { fatalError("Running on \(deviceModel) but we only support \(requirediPhoneSimulator) and \(requirediPadSimulator).") } - guard UIDevice.current.snapshotName == "iPhone-26.1" || UIDevice.current.snapshotName == "iPad-26.1" else { - fatalError("Running on a simulator that hasn't been renamed to match the expected snapshot filenames.") - } } } @@ -92,7 +89,11 @@ extension XCUIApplication { } private var deviceName: String { - UIDevice.current.snapshotName + switch UIDevice.current.userInterfaceIdiom { + case .pad: return "iPad" + case .phone: return "iPhone" + default: fatalError("Unsupported device type: \(UIDevice.current.userInterfaceIdiom)") + } } private var localeCode: String { @@ -111,20 +112,6 @@ extension XCUIApplication { } } -private extension UIDevice { - var snapshotName: String { - var name = name - - // When running with parallel execution simulators are named "Clone 2 of iPhone 14" etc. - // Tidy this prefix out of the name to generate snapshots with the correct name. - if name.starts(with: "Clone "), let range = name.range(of: " of ") { - name = String(name[range.upperBound...]) - } - - return name - } -} - private extension UIImage { /// Adjusts the image by cropping it with the given edge insets. func inset(by insets: UIEdgeInsets) -> UIImage { diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testMandatoryCreateFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithPassword-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-26-1-en-GB.png deleted file mode 100644 index 6267699a1..000000000 --- a/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e8fbd4fa17c81da4aa851129f86614ba55049dc231e2867bf5781a244b6325b -size 191765 diff --git a/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-en-GB.png new file mode 100644 index 000000000..befe9951b --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/bugReport.testInitialStateComponents-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1058009c5a4d24e5af7626b8a1bbd95666057aa4ad90473e53a448a4ce5c56 +size 191874 diff --git a/UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/encryptionReset.testPasswordFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testFlow-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPad-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/encryptionSettings.testOutOfSyncFlow-iPhone-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testEmptyScreen-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/pollFormScreen.testMaxOptions-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testJoinedAndInvitedMembers-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchInvitedMember-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomMembersListScreen.testSearchJoinedMember-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/roomRolesAndPermissions.testFlow-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-26-1-en-GB.png deleted file mode 100644 index 6a8a7a5c5..000000000 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08db3bf718e40e793522fc018cfec60679fcd8c644d5565af5e3eb9bb0c0e24e -size 281931 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-en-GB.png new file mode 100644 index 000000000..ddb60dba5 --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ff215e922d136536bdaafe1bd5f4e6b7423e459ae2d108b87bf1c49e1dba26 +size 281725 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-26-1-en-GB.png deleted file mode 100644 index fda35c8b2..000000000 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9504510a7c6abd0082c145c9a14578449aa9d3dc92d2b1a46c62f0a9a9581b88 -size 306942 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-en-GB.png new file mode 100644 index 000000000..066e08e28 --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b4111806b22e31f8019cdfd3038b0834cff6375d8df2fd2bdbef3172b8ec3b +size 306772 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineLayout-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithIncomingAndPagination-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testSmallTimelineWithLargePagination-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-26-1-en-GB.png deleted file mode 100644 index 33272e4be..000000000 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c360ee4f8c1219e294f6aeb5eea27768335e0105d58e74d816f0f6d65141bfe -size 230195 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-en-GB.png new file mode 100644 index 000000000..2c1d8c11f --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineDisclosedPolls-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2abb8886eeb8e99dae4ae2121858604311124913a3fe1f0a589a6d6b5b60771 +size 230319 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtBottom-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutAtTop-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-26-1-en-GB.png deleted file mode 100644 index 55d8ac328..000000000 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6eacc13c08757a2c3e47ab643999a6d1db118239e5a547fe1421a91071f7a27e -size 173922 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-en-GB.png new file mode 100644 index 000000000..81265e72d --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineOutgoingPolls-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab72f10cfa941dcae3b7ae7c0d9ef4ea0b3183db61d9ab1b7667f1017091278 +size 173811 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-26-1-en-GB.png deleted file mode 100644 index 7c83dfb51..000000000 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e15299ce6c47aae274d3cb715fc8d79321cbc839de2ac41344bc1bddfe0d714 -size 156940 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-en-GB.png new file mode 100644 index 000000000..c1d3e1b5e --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineReadReceipts-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2679835132f4f901a7461f8fd599af2fc2f370bc3ab6f25cbaa2a1ba3af3d1cb +size 157053 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineUndisclosedPolls-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-26-1-en-GB.png deleted file mode 100644 index f67e4374c..000000000 --- a/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f9c6ab86ace6b5818ce02c0857a3a41a32e81dda2fbaae453f17a65c9a4ee2c -size 169611 diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-en-GB.png new file mode 100644 index 000000000..38cfb9131 --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/serverSelection.testEmptyAddress-iPhone-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1d6fbe942c8441576828796a4657ac0501721fe9a6b98193df71e9c00b511b +size 169798 diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/serverSelection.testInvalidAddress-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPad-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPad-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPad-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/serverSelection.testNormalState-iPhone-en-GB.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPad-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeDoesNotMatch-iPhone-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPad-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testChallengeMatches-iPhone-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-0.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-0.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-0.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-0.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/sessionVerification.testSessionVerificationCancelation-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-8.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-8.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-8.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-8.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPad-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-8.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-8.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-8.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-8.png diff --git a/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-99.png b/UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-99.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-26-1-en-GB-99.png rename to UITests/Sources/__Snapshots__/Application/startChat.testFlow-iPhone-en-GB-99.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-9.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-9.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-26-1-en-GB-9.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPad-en-GB-9.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-4.png new file mode 100644 index 000000000..fe4783272 --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b08807b17072a7a6010629e07918d301e149a7890522d3cbc14b9342327342e +size 587297 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-9.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-9.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-9.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-en-GB-9.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-8.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-8.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-8.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-8.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-9.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-9.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-26-1-en-GB-9.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPad-en-GB-9.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-4.png deleted file mode 100644 index 056338c1a..000000000 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-4.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05ade6f86f20b00c4636a086547a9132d1df3ffefc122bcd27e609b4fae0833d -size 587550 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-4.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-4.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testAcceptSpaceInvite-iPhone-26-1-en-GB-4.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-4.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-5.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-5.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-5.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-5.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-6.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-6.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-6.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-6.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-7.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-7.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-7.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-7.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-8.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-8.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-8.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-8.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-9.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-9.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-26-1-en-GB-9.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testSpaceExploration-iPhone-en-GB-9.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-1.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-1.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-1.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-2.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-2.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-2.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-3.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-26-1-en-GB-3.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-en-GB-3.png diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-26-1-en-GB.png deleted file mode 100644 index 9dd7aee3a..000000000 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-26-1-en-GB.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f7159081d6714edfc043875035fd58eb37a0deee7ed870aed8429dda8b390c3 -size 501758 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-en-GB.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-en-GB.png new file mode 100644 index 000000000..7151fa8bd --- /dev/null +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-en-GB.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1307720ae12d91744e53da3b89a21f80692530faf0b1edb7febdc60eb03c7672 +size 501803 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPhone-26-1-en-GB.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPhone-en-GB.png similarity index 100% rename from UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPhone-26-1-en-GB.png rename to UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPhone-en-GB.png diff --git a/compound-ios/Tests/CompoundTests/PreviewTests.swift b/compound-ios/Tests/CompoundTests/PreviewTests.swift index 6b736ce74..621cd15e2 100644 --- a/compound-ios/Tests/CompoundTests/PreviewTests.swift +++ b/compound-ios/Tests/CompoundTests/PreviewTests.swift @@ -15,10 +15,18 @@ import XCTest @MainActor class PreviewTests: XCTestCase { + private struct SnapshotDevice { + let name: String + let device: String + } + private let deviceConfig: ViewImageConfig = .iPhoneX private let simulatorDevice: String? = "iPhone14,6" // iPhone SE 3rd Generation - private let requiredOSVersion = (major: 26, minor: 0) - private let snapshotDevices = ["iPhone 16", "iPad"] + private let requiredOSVersion = (major: 26, minor: 1) + // The key is the name we will give to the snapshot + // The value is the actual device that will be used to render the preview + private let snapshotDevices: [SnapshotDevice] = [.init(name: "iPhone", device: "iPhone 17"), + .init(name: "iPad", device: "iPad")] private var recordMode: SnapshotTestingConfiguration.Record = .missing override func setUp() { @@ -66,9 +74,9 @@ class PreviewTests: XCTestCase { var sanitizedSuiteName = String(testName.suffix(testName.count - "test".count).dropLast(2)) sanitizedSuiteName = sanitizedSuiteName.prefix(1).lowercased() + sanitizedSuiteName.dropFirst() - for deviceName in snapshotDevices { - guard var device = PreviewDevice(rawValue: deviceName).snapshotDevice() else { - fatalError("Unknown device name: \(deviceName)") + for snapshotDevice in snapshotDevices { + guard var device = PreviewDevice(rawValue: snapshotDevice.device).snapshotDevice() else { + fatalError("Unknown device name: \(snapshotDevice.device)") } // Ignore specific device safe area (using the workaround value to fix rendering issues). device.safeArea = .one @@ -77,9 +85,9 @@ class PreviewTests: XCTestCase { var testName = "" if let displayName = preview.displayName { - testName = "\(displayName)-\(deviceName)-\(localeCode)" + testName = "\(displayName)-\(snapshotDevice.name)-\(localeCode)" } else { - testName = "\(deviceName)-\(localeCode)-\(step)" + testName = "\(snapshotDevice.name)-\(localeCode)-\(step)" } let isScreen = switch preview.layout { @@ -155,7 +163,7 @@ private class SnapshotPreferences: @unchecked Sendable { private extension PreviewDevice { func snapshotDevice() -> ViewImageConfig? { switch rawValue { - case "iPhone 16", "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10": + case "iPhone 17", "iPhone 16", "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10": return .iPhoneX case "iPhone 6", "iPhone 6s", "iPhone 7", "iPhone 8": return .iPhone8 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPad-en-US-0.png index fbf85ff58..a701673d4 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92d42eae08c834c1eebbcdcf516295094c4e7b739247ceed55739903cfe5dfd8 -size 363963 +oid sha256:479fe4ddb6a6fabaabc2e55494fdbb866ff91fe6170d451121183843102b1085 +size 365602 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-16-en-US-0.png deleted file mode 100644 index 2b5d8219f..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6a535b429cb142ff9f0604d0241185e85ddf98b8ec5e2fe275f8316ed0ea1813 -size 245520 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-en-US-0.png new file mode 100644 index 000000000..a60b46f86 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundButtonStyle.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319f94d9727fcd4ca5e2402e88f3adca09977fd190c1ac7b2f42e4037ac774f4 +size 246298 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Icons-Only-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Icons-Only-iPhone-en-US.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Icons-Only-iPhone-16-en-US.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Icons-Only-iPhone-en-US.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Labels-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Labels-iPhone-en-US.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Labels-iPhone-16-en-US.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Accessibility-Labels-iPhone-en-US.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Buttons-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Buttons-iPhone-en-US.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Buttons-iPhone-16-en-US.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Buttons-iPhone-en-US.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPad-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPad-en-US.png index d7e08ab69..e03c679fd 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPad-en-US.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPad-en-US.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6d4c75e6fb3110ff56c00740de3cf4d1b686cbd72dbd6450c814a2845009235d -size 100347 +oid sha256:0ee44e47bddf3eef7bb5596623adf613e929dd2a7ba30b31ad8b0b3110126a75 +size 97423 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-16-en-US.png deleted file mode 100644 index 4e2190804..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-16-en-US.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8667eeaaba9b5bc7abad960c457f386b2f7df4ef8ee8237725b41e8fc7566f91 -size 52794 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-en-US.png new file mode 100644 index 000000000..887e41bae --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundIcon.Form-iPhone-en-US.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd094069e63b3facd6550d2f0d0db99aa6cdd4735ccc2d15861eb7eb9c9d25e +size 50658 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundToggleStyle.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundToggleStyle.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundToggleStyle.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/compoundToggleStyle.iPhone-en-US-0.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPad-en-US-0.png index 21717ea25..3fda079f7 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71c1c17fd959d8fa9afdeaf808a386680c9f6e05aaebd5c7544cd3c507b4627e -size 116937 +oid sha256:6a42fb2b64b6a5c583aa0b95d7dbf4fc10a17494baf1e3da8348297aa1d727ec +size 110005 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-16-en-US-0.png deleted file mode 100644 index 475d0b679..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29b9d46a50018c833c5d34ac140f1f189f5aa926c82f67f75ca76a5f0c4ffb44 -size 67634 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-en-US-0.png new file mode 100644 index 000000000..35aff9e2c --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listInlinePicker.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b01af5cf919295729ef6ab86a418d23eed8bfc7578922fecb3e51d12562aa1 +size 60233 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPad-en-US-0.png index a54bd7a11..f1267e83a 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c68720e4d3b40dfc6003220405af729c2bc67ca6f4bef3af7d44625e70c51e01 -size 437038 +oid sha256:56eeb69cb930a4a8768b9e965cb1b107d9e2d6e767284b20c720cbd026318977 +size 397819 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-16-en-US-0.png deleted file mode 100644 index d7bc561a8..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fd72899333242a49b483a9d31b59e6601943f099a10c6269d4b889c38ff8ad75 -size 298633 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-en-US-0.png new file mode 100644 index 000000000..0bac37565 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRow.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92722ff5a722dcf2f3815311d99149bf70ed8c146350a5ff83caab4ed63cb93 +size 266194 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowAccessory.Accessories-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowAccessory.Accessories-iPhone-en-US.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowAccessory.Accessories-iPhone-16-en-US.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowAccessory.Accessories-iPhone-en-US.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPad-en-US-0.png index e2ecab00b..fc871d891 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59aafe6e5b98db613736839970a02d728840717adc2ddfd0dddf9a949955bbdd -size 90861 +oid sha256:8ea2558e30ef8b5a54c151f8c3d00cea0eec863d89cfe4b2f5c8beb572bd022c +size 86943 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-16-en-US-0.png deleted file mode 100644 index d821a03c1..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90b881fd9796efb27b617dd88e4740d34763279aadc1ff341be4a2ae7a93cef2 -size 44699 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-en-US-0.png new file mode 100644 index 000000000..cafeaa765 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowButtonStyle.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24f028c3e51c4480cbff7a22d14f556d1c6b3dd070160ee27789126b222c9a2 +size 41537 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPad-en-US-0.png index 4204a5c2d..2c474c9a5 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:208f242925fecd91f86e9b8afe79478b2253a252f6e3ea6583e57b6b4c7a44d3 -size 208392 +oid sha256:5f78bedc262cac32ac78a88aa97389efb3feffe971c829a198dd4382e2d2ef26 +size 191878 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-16-en-US-0.png deleted file mode 100644 index 9ce9b765a..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6b1251f8070d93eae2e41e4c4c58ce03d4d5947b9e63ca3824aaaef35aa4899 -size 149137 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-en-US-0.png new file mode 100644 index 000000000..7b97b80ba --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLabel.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902dc2ba25af3501bab1533a20c7b07f798345424dffde546d3f1784f0c87fb8 +size 131625 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPad-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPad-en-US-0.png index 9ad40f3a9..4e8f5bac7 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPad-en-US-0.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPad-en-US-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d9c705c66ea08a16f70c60874f5bbcb97c30b3f9f6a7f4a69913149a3b60413 -size 135959 +oid sha256:3e41ba9ae022a7aaddaa6f9311d9d0d84e82b5775d884c10108f72681a8246d9 +size 133248 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-16-en-US-0.png deleted file mode 100644 index e01eff78a..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-16-en-US-0.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:120cf8492a676297433bc52e6d9a7c8b90b749245b190d6de3d9d6ab3ff8a06b -size 103398 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-en-US-0.png new file mode 100644 index 000000000..d06816cef --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowLoadingSelection.iPhone-en-US-0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f87baed151e6e980d9c86b7e626537a9c72319a759482281720e3980e0bf70 +size 99945 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowTrailingSection.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowTrailingSection.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowTrailingSection.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listRowTrailingSection.iPhone-en-US-0.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPad-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPad-en-US.png index 24b609e77..80e9b89e9 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPad-en-US.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPad-en-US.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac5ed5a5063401dbf7387a5b5f117ce8fb4bab99441edaf7c253a25a57a8692f -size 108001 +oid sha256:2f1656e9b8e951ef999b31940dace699ef28b0322ca119dc19bf9a47e1fe1933 +size 106642 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-16-en-US.png deleted file mode 100644 index c59804573..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-16-en-US.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a93babf81fe639ff816d53e00800d4d86a03f5827710859ef248da3df0e13a62 -size 60480 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-en-US.png new file mode 100644 index 000000000..fe6559923 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.Form-iPhone-en-US.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c27529b9aa1a5eb7a0f0da9e053a8f09af50019428e040d6ee27a91b1e08ad +size 59424 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPad-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPad-en-US.png index c9cc1aa2a..9011f7c6b 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPad-en-US.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPad-en-US.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:947d5b5e1bfe119d8a6d2c347188cdbcb62e8b8f88507526663165ee733d7bbb -size 88969 +oid sha256:bc4527662ef00800d2fe644b4d02c8af4b3fd95ea68139309c9dc8e18a5dd2b1 +size 87597 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-16-en-US.png deleted file mode 100644 index 5243006b6..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-16-en-US.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3353c5b59c8eb902dc1b4fa62cb93460206c60d007a4a4f4db8293e808e24950 -size 42436 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-en-US.png new file mode 100644 index 000000000..3cad66480 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/listTextStyles.List-iPhone-en-US.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92da62ffd1476a1d795db7462c16c3f52f4aa5615fd1517ae91225bf6710ffaf +size 40986 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledFrameModifier.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledFrameModifier.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledFrameModifier.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledFrameModifier.iPhone-en-US-0.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledOffsetModifier.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledOffsetModifier.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledOffsetModifier.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledOffsetModifier.iPhone-en-US-0.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledPaddingModifier.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledPaddingModifier.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledPaddingModifier.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/scaledPaddingModifier.iPhone-en-US-0.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPad-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPad-en-US.png index c030ebc75..17db026c3 100644 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPad-en-US.png +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPad-en-US.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e9a7d9a8b67d377ad3cf576eac03cf69c3cb815902b8a0a913deb1aeb813dc6 -size 97512 +oid sha256:72d36ddf21854d317e87a7285299b5b75652e53e6c09e1c62d1dcd6dd00bc9ef +size 96821 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-16-en-US.png deleted file mode 100644 index e381d8850..000000000 --- a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-16-en-US.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91b051f02d7734e7f1ac3330efe8887829ed06370e105bd2e51793cd59dc4397 -size 49549 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-en-US.png new file mode 100644 index 000000000..a8ac08eb0 --- /dev/null +++ b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.Form-iPhone-en-US.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b34a1ae4c75e0fbf789ccd2c7abc84a59679e39e975fb128814bcce12f492c6 +size 48821 diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.List-iPhone-16-en-US.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.List-iPhone-en-US.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.List-iPhone-16-en-US.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/searchStyle.List-iPhone-en-US.png diff --git a/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/sendButton.iPhone-16-en-US-0.png b/compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/sendButton.iPhone-en-US-0.png similarity index 100% rename from compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/sendButton.iPhone-16-en-US-0.png rename to compound-ios/Tests/CompoundTests/__Snapshots__/PreviewTests/sendButton.iPhone-en-US-0.png