diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index 03d6f351a..fa6f3a37f 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -9491,7 +9491,7 @@ repositoryURL = "https://github.com/element-hq/compound-ios"; requirement = { kind = revision; - revision = 4ad0bd0acd825a905bb4955b32979fe34cc538eb; + revision = 07563f32203a0a8c3a660cc9fc7cd59cdebcc34f; }; }; F76A08D0EA29A07A54F4EB4D /* XCRemoteSwiftPackageReference "swift-collections" */ = { diff --git a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 7aaabe289..940d5b02b 100644 --- a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -15,7 +15,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/element-hq/compound-ios", "state" : { - "revision" : "4ad0bd0acd825a905bb4955b32979fe34cc538eb" + "revision" : "07563f32203a0a8c3a660cc9fc7cd59cdebcc34f" } }, { diff --git a/ElementX/Sources/Other/Extensions/Observable.swift b/ElementX/Sources/Other/Extensions/Observable.swift index aa1f1a092..c2dde051d 100644 --- a/ElementX/Sources/Other/Extensions/Observable.swift +++ b/ElementX/Sources/Other/Extensions/Observable.swift @@ -14,25 +14,37 @@ extension Observable { /// /// - Parameter property: The key path to the property you would like to observe. func observe(_ property: KeyPath) -> AsyncStream { - AsyncStream { continuation in - let isActive = Mutex(true) - - @Sendable func observe() { - let value = withObservationTracking { - self[keyPath: property] - } onChange: { - // Handle the update on the next run loop as this is willSet not didSet. - DispatchQueue.main.async { - guard isActive.withLock({ $0 }) else { return } - observe() + if #available(iOS 26, *) { + let observations = Observations { self[keyPath: property] } + return AsyncStream { continuation in + let task = Task { + for await value in observations { + continuation.yield(value) } } - continuation.yield(value) + continuation.onTermination = { _ in task.cancel() } + } + } else { + return AsyncStream { continuation in + let isActive = Mutex(true) + + @Sendable func observe() { + let value = withObservationTracking { + self[keyPath: property] + } onChange: { + // Handle the update on the next run loop as this is willSet not didSet. + DispatchQueue.main.async { + guard isActive.withLock({ $0 }) else { return } + observe() + } + } + continuation.yield(value) + } + + continuation.onTermination = { _ in isActive.withLock { $0 = false } } + + observe() } - - continuation.onTermination = { _ in isActive.withLock { $0 = false } } - - observe() } } } diff --git a/ElementX/Sources/Other/SwiftUI/Views/EditRoomAddressListRow.swift b/ElementX/Sources/Other/SwiftUI/Views/EditRoomAddressListRow.swift index ba611c50c..37ffe6659 100644 --- a/ElementX/Sources/Other/SwiftUI/Views/EditRoomAddressListRow.swift +++ b/ElementX/Sources/Other/SwiftUI/Views/EditRoomAddressListRow.swift @@ -46,11 +46,23 @@ struct EditRoomAddressListRow: View { } private extension View { - func errorBackground(_ shouldDisplay: Bool) -> some View { - listRowBackground(shouldDisplay ? AnyView(RoundedRectangle(cornerRadius: 10) + @ViewBuilder + private var shape: some View { + if #available(iOS 26, *) { + Capsule() .inset(by: 1) .fill(.compound.bgCriticalSubtleHovered) - .stroke(Color.compound.borderCriticalPrimary)) : AnyView(Color.compound.bgCanvasDefaultLevel1)) + .stroke(Color.compound.borderCriticalPrimary) + } else { + RoundedRectangle(cornerRadius: 10) + .inset(by: 1) + .fill(.compound.bgCriticalSubtleHovered) + .stroke(Color.compound.borderCriticalPrimary) + } + } + + func errorBackground(_ shouldDisplay: Bool) -> some View { + listRowBackground(shouldDisplay ? AnyView(shape) : AnyView(Color.compound.bgCanvasDefaultLevel1)) } } diff --git a/PreviewTests/Sources/PreviewTests.swift b/PreviewTests/Sources/PreviewTests.swift index 3886373a5..7612aa9d8 100644 --- a/PreviewTests/Sources/PreviewTests.swift +++ b/PreviewTests/Sources/PreviewTests.swift @@ -16,7 +16,7 @@ import XCTest class PreviewTests: XCTestCase { private let deviceConfig: ViewImageConfig = .iPhoneX private let simulatorDevice: String? = "iPhone14,6" // iPhone SE 3rd Generation - private let requiredOSVersion = (major: 18, minor: 5) + private let requiredOSVersion = (major: 26, minor: 0) private let snapshotDevices = ["iPhone 16", "iPad"] private var recordMode: SnapshotTestingConfiguration.Record = .missing diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-en-GB-0.png index 3b7da6c0c..a706ffa7f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e12158d222c608b94be9b4e09d8e38a25cb76127fc110c09e0ddd8a2bd6c8924 -size 184452 +oid sha256:e6f9d0a3e902a2a3e5b62a590a283b2bffcbf91bbd65f82e6f7a398a10da2658 +size 178432 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-pseudo-0.png index 5a31b0aae..b723c7bb4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1aae0a83d7e94b6640dd8bd006f72263925f8b767287da6f21900546809028a1 -size 217645 +oid sha256:698c529eb53e136103c3002c7945e8831865b11590942817c014ba4ef3b0e615 +size 217188 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png index e0784c09e..a6c583de4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17a8c8606a2823588a2317f28b566b5e5edae48f9a596beace445dc1a947d4c3 -size 129625 +oid sha256:37f36dde92dabb12da655ff8a4b2d6abe4594a32829ad4135727c6e0e42aa87a +size 129468 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png index b6b3dbe4b..c62e5ec9c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6688de61760cd0f20663ace473d6f9724f35e38faccf2d03efa651e037ec45e9 -size 168165 +oid sha256:868690376e413338b7c25b41ce233d5b0650cf7f4405b48aed743220e5938954 +size 165041 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-en-GB-0.png index ac6443141..cb53eaa55 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6926210d9a615c7c9d73a4dc5af08fed7c8a88da2de49bee8b9930495be8cc27 -size 98462 +oid sha256:b47de70466478cf6ba90c03802d2e5d6819401f08b0a28f6e9f8fa0f88223426 +size 97741 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-pseudo-0.png index 07db49404..0348cb557 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb82fb5fa35be8896780ec5744a7e5cf8298806b8f0a1e83d7328282c6165309 -size 104971 +oid sha256:9b1c85e8d3709a6200e271fea0ed8509a27a57becfe18ee1f8f115370824071d +size 104290 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png index 026c5c372..808d75373 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:330ee2e7a3f8ee055400f00d4db60c7410338539ed1df9a36605e05bcb781561 -size 51483 +oid sha256:d16c2625c25ca090f605836915a441898cf93cb5b4927c2f1af8c82b5d569104 +size 51064 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png index f556e0a87..b83526afa 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f00ea9dff06560ad9b8c40f249a5bc88112e3e506c8bb584c4081340953d830b -size 66262 +oid sha256:5e54b2d458da92af454b7328ddb481c822736f06250ed5605c029dfd95186fe2 +size 65761 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png index 843963df9..e0b3b4d7e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3862695520a15fd20a496a958ff81da6c0791f90dd03be48bb49139aadfb9428 -size 70758 +oid sha256:c9772de73742ba261d6fd7d3584db635e7800ccac54c33353e60d06cc0f3c2f2 +size 70293 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png index 6c5e0e1c0..c0049a29d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fec2ea55738cd60512c839c92699d01905a7d81207edc8e3377fa3d5f8afbbaf -size 77712 +oid sha256:d35751d4fef603a49c2d4e274e8f67597532138ebb29ffa2f2a516dd450a3527 +size 77097 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-en-GB.png index 33d98b0cc..89f873240 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc65570f119e510f8a9642987fc02e2a8df4abf0101be8b5e33c0649485057f1 -size 98676 +oid sha256:f09c99cbce0b5399046a6294656a4f4cfb1db7de0a40de356099567a112489a1 +size 98902 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-pseudo.png index c109fe0b8..09b9544d8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3102cd8cf83e1b57b1c8246a8ab2d35bca4533f2403c386bda79df9aa07f07d5 -size 111936 +oid sha256:ebfb0a01aaef048a8fe0eaa433da6c6b8eb115ffff4f90ebfc16c271304ce171 +size 111947 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png index 118bbe532..54af25e72 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f6514aa06f3cfc812c903fa508d4d5376faa1c0175270684c7fd03b20c9bed9 -size 57320 +oid sha256:ab890484e9324f4bca9936d3e9e14e8c587d728dd71e831c101c3662e487fe9a +size 57158 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png index 0f1025482..f98749997 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c558f85c150e96ae92604334e604edcd7909913c5efcc60c1c31b6a877d0715 -size 73344 +oid sha256:4851e1d3d6bd2e7c75e078e678791ac99d2dbddeeeef44768b104c6f1fa19ef6 +size 73049 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-en-GB.png index 005aafc0f..a437cec65 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33a6f01cbfe097edc7e0334ca8c8bf14e3c58546d8e3cc50ab81658948163e16 -size 107080 +oid sha256:066c0ceb59efafd736a3d5d22a9d3dd3bee310fb2c45fa3d238af2c21e8266ec +size 107076 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-pseudo.png index 82a6a9277..064ec6966 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:329377fcc6920343c92582ac7662dea644076a26f83d775dfac660b696db3a38 -size 122047 +oid sha256:a7247b93a2b487e7d5a7be6e058c0fff331b9e9af619b8fa43b99ed402dd6099 +size 121990 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png index c947661ed..4892c4b4e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce949cfade01de7bf73533a4834318c4addda10147a3efb4d4a06c6043661813 -size 64668 +oid sha256:d19e1bdbc3c90ff3381fb3506a430d9979550dfdfc5647f74446d2a0e0e61dc9 +size 64581 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png index fd331b9f4..7321814c5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69f74917d392a9d7636118feac3223ac0ec6221596f7d3b599f55d9e2407cced -size 81140 +oid sha256:9c37bd03fb812f6a9582bb6a61a8f985a8be2078c4b8a2a9dd294e4253abfab7 +size 80965 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-en-GB.png index 7b9c5804c..51333b208 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a10802f517ce3b79b274aa97809898370e174fcc444fd542a3ba5ec8f2a6eec5 -size 99149 +oid sha256:e972df002e20d80038a0e2fa7d906adbf2dfe7b4542a8c49c4d8c90ae7d158de +size 100664 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-pseudo.png index 9bcdb6322..6c64c901a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a713effe57f94866e1b5e3d7d49531c1356593f9a04c3a829183d3c3fc2bd850 -size 117964 +oid sha256:8f9388e7e0fab24f315d31dc5cc9b63422128e1a5363ff4e496b383656c25f69 +size 120818 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png index c995311f3..3f1926bd4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:191d11a81234b2a499944760d3e0ef38a5580ec25b2861224f63e5e9ef1cfe52 -size 58319 +oid sha256:8efc6d96a58b1e3c66d394807b57db30f0f53ca8aeee8946197c4b7dffa35ffa +size 56901 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png index ba5a1e202..3da9698d8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcb718048645668f99ee153f25cf55ac9b9b21d9e34b71cc68e497a273b5b6a5 -size 78998 +oid sha256:3c4ee5de92ef307d87651a97df4aefda3ed618691454e4cab8fc1bd98388c625 +size 78532 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-en-GB.png index f75e07d3a..85e125a45 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcadc2f7d2e50e0695655693e094244c282ea7733a0ed16a531eb5719f12ebd1 -size 99518 +oid sha256:1c73df4de8257c2fb7f8d044e9b386bfab5ef1f7e29ea20c27ffe0c7fac6e086 +size 101017 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-pseudo.png index 7b511890c..ab9be54e3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e16ab41a6aeb66c2f7c3fad62f3e4f243ddd4d9b0617239768bd2b8cbbb43ee0 -size 118271 +oid sha256:b73b7aca20b329955cc01ca8aa72c60da5e3c724b7eee91a3ce62279c03ed464 +size 121138 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png index b87d085ff..4b6c2da8b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc297fa29d248010fe61dcbb9bb9e3ec9691565b384bdc0ba603ccba25787163 -size 58617 +oid sha256:1b40b05f7c48ef855f52428f10701ba5520f5346485c9ad79da85081ba1d3061 +size 57229 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png index a62766f03..faa15f511 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1197ab62fa24d79753faf9563ce42bbdda2ec31c913048652151dfc95f1daac4 -size 79281 +oid sha256:6ce097891d59be0c6447b3a0bc066b28840f7771c0fa98f35c46d28601c77976 +size 78807 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-en-GB.png index 22b8c6072..d806474b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dbacdea510dbb4afa701f4b4e3626dca5e5ed1aabe89fc637a93795dc3d4b018 -size 90780 +oid sha256:4539a9f8e18b215cbb886e0cf24abea61f07d36d11ba47919cc46ba070b1f57f +size 92005 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-pseudo.png index 52c73c5c1..7da60ffa4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8702a763c7f4530f54e0c7b5c4076667a0e17cf7844c443032239213cbf213e -size 93840 +oid sha256:2c91b227cb488c77ff609051ab203021d97ef661d2671dcc2c6ac51964b445f0 +size 96002 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png index f8d9da797..1ab03ee14 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54ae0c16fcde575271c0f823bb46d104ca3378024017dda2d873029e6bfc6602 -size 49116 +oid sha256:d846969ef7da4a99bae5d83f26dbccfecc812ba60638505b4d1cff62255db86f +size 47749 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png index b477db147..bf1d4c5c1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:200f2a472909e0df9a7e477f9f3a208082f6fe5dc42c75dcad531cbb06bc6e34 -size 51681 +oid sha256:47cc37d22e7b54ddec1026f7b7d0e5259d545773008a7e7786cd5fb10dfb1270 +size 50849 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-en-GB.png index 9087dde29..0bf2a8bc7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8d8f6dccf4f0a1b4354a32520563f0ec4cf19096f5d3e53dcb50db84d4c7bbd -size 89375 +oid sha256:79ff21147b3be9ead77686bcaaa145adf742d48459ca66b9377727bde7cb211c +size 90565 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-pseudo.png index c1ab461f9..3853ae2f5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a07c9c532a59471b4f9bb6d165d9e201065646a124e05c42dd68a06b68410b7b -size 93656 +oid sha256:06237f629bd206f5d707501517f0a7eb78e8b82c006059977aa2d64b995d8507 +size 95800 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png index 126d410b1..9c5ff331f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:72383f9c2649be1102116cc27376dfa56ca4a2a1b9e7ecabb5831d50fa591f12 -size 47717 +oid sha256:0a4a117dc3a0983ee3fc1512c29badd9f1e993274617cf5ec2727832b3dce657 +size 46273 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png index 987ed729c..8d1d8dd2a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f0d94ce9bdfe56fffa271bea088faf130f58713d353d136dfc78f0a5ca62aa9 -size 51465 +oid sha256:d043a4e11e8bfe980562a3a44896c507a075cc480cce19ee1aa70694cf3ca238 +size 50645 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-en-GB.png index 148a893db..22df56b24 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:356f1a6731607c3e97173d8ce06c68b83ad4cca3e15357eb44c1ce7037ddafcf -size 97611 +oid sha256:94ac936eb23538e7745fa87d7842ae92198a2791b1116a6b37f30f52ddfb0440 +size 97144 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-pseudo.png index bb2f85342..03e437ac1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc0e088784cef05e8bfe6c997facbcaff0c55021109f29225933aec28f7a7273 -size 102032 +oid sha256:c14e658a922054e471c66e69b5fa443a15fce9c3d02374abd756c59f1e45a53d +size 105758 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png index 4ba916e57..4fab6dae1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b7a4a6ca895b8d71d079176ab44732316aa7149992b21ab768be82a6e7dbc4ea -size 49095 +oid sha256:6e0bc35c344f43d4a9d40a32f07a12b4d53c8e3530d55b058ae2d4f711031df4 +size 49521 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png index 0fc89a12c..b51c0e94a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8e967bf9f379fa62f6ca21a70e0af0bb146a0ac78a7a2eea0a97c11e6a10afd -size 56649 +oid sha256:bba804c3fd0aa13ccd73bbd22fe34942fb2ffcd734129617057c6c42b62f5320 +size 57205 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-en-GB.png index 28914580e..68bff2551 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:727f3dc6aabbeb986ea755b0595a0f8a7eaee848d15fd95eb2d21ba563432ffa -size 89618 +oid sha256:6654339bf64c0617611938527d5ccab39cd756dcc438f572749baf8b6621b75b +size 90017 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-pseudo.png index 2f16ad8a2..0e7e8f3c3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b23850550a44b8c4ff89abb3fcaeb7133bf1d0257723c850547d76b5e943aa25 -size 91563 +oid sha256:f7f4694e53a1b3c30a5801099cbe69af16902c0e613b72eb22e938b10c97005c +size 94896 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png index 6f71f50a8..361213bbc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41acc3cd4775ba06b537fedad75903356275269b02a8c80c56cfa8e8b9411a44 -size 42396 +oid sha256:c466826a854568b127820d16dfd5ab70594c3e6977d2371c0ce695cba9dfcb64 +size 44008 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png index 10ca3e959..1adc24c86 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d12573998b27fb7094012b265f02558a6ec1d47282daedda183ec64e7abb190c -size 46489 +oid sha256:6f89abd217cab9c03ffe089f0b0eeb39301465980afb962f4dcb762db3624d5d +size 48199 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-en-GB.png index 786646c95..b5e64699a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a7d7afe33653c06fed0f88765f7a8ddd45236df784c18cf210161eb3ee0624c -size 93321 +oid sha256:c885444af460496d744590d8096dfa6014d57800b8da18ac18d2032b15af2f8a +size 91848 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-pseudo.png index adfbdb4b0..c9a735ae0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:908b9f86a6cb31e620009f7bff398ead7d68241eedc5f8e59fe01d39e5cf167d -size 97588 +oid sha256:e363a850085814a1d74485ec566e547a8ffc7ba9282e4c47146a386a169f72ec +size 99464 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-16-en-GB.png index dae7d2c3c..df555100e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8942f3d67c62661dbebc6580c3d79853ab49673f846ca481d4740153d04625c -size 45702 +oid sha256:e7ce52ac4e442ab9601b8eb22005a4cb6430f4e10f7a6e4641deadf5ecc1fc9f +size 44981 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-16-pseudo.png index 011db1cf4..3399ae8df 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c9ae6aec2e39d2782be188c197e97e0a5c617a67adbc6f5cfd0ee6866e7eed5 -size 52118 +oid sha256:f7e1e91f198b3d78ba61b224328ca2acf422fb40fb0c56ba938456aa9fc1f29e +size 51560 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-en-GB.png index 542bba71d..951e5c937 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6158f690ffe1defeef9b583dd8267204ee733a45f2f5cf44d6696cc5af64789b -size 111970 +oid sha256:0b3ae1e6729b27ef9d386cacc5df203a3975a950c88219b54108e3256f5f5a8a +size 112006 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-pseudo.png index fa7a6a1fb..87b4426da 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:514e4b542257ee77beb1c82896476935e1d8a1727d8a77384545cd94f8f87ea5 -size 132189 +oid sha256:84411cf7ddff4b62b6064ac606cee43b952e92f5831eeacb51e4b6e2a9f1936b +size 132211 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png index 78e9d3185..a3d73f4ea 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43a70f508336cb1d5fe0f3679b700b3d6cd8e64182b549e40f42c8f8aa0374e0 -size 510930 +oid sha256:1d8dcc7ea386e1a8a47690e0a621374500493f5d152f77ca4fae77d3d4ff4133 +size 509452 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png index 1e256779e..a163bf469 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Default-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c7c51cd982fa0262784bf27f4a9bd295219a7733bc2ed4359d403bd81d2564f -size 533667 +oid sha256:84691b60224c22667ce3c9c613a8c59ea5246fbd334a2bf17820c48772dfdf79 +size 532420 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-en-GB.png index 3efac09a7..92c753ee3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1a60cca5b53f6998cb6c2bf2cf1a8dd2fdd1343ea76fd72df32bba1d07fd011 -size 99862 +oid sha256:1aa7e21c1ff4d2c80be1026659b6ceacd1a3cdb2db1044f5f861d868b6910eac +size 99890 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-pseudo.png index cf9fd4ccc..164b9c11a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ab408cd8e4aa4f955a03f68d845a5ac4d57e90ebbbab6b3fa0502aa6d0407c9 -size 118992 +oid sha256:3c3d8f6ccf45231516e7b1d11aa4de15cefbf6e193e3e34021e3bc51be8cb815 +size 118896 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png index bd10a24ab..81062471e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97d86af1a0f6eeb5d6933b13a6a5de3df8db1d2672d2e7cdf1f2fe83a0adbf64 -size 531619 +oid sha256:29fb2634296bb97399e4fa640e4899ae3371dd6d1b0a8a680e8f94afef1bca2c +size 531435 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png index a9f6f62a8..816da6ff9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/authenticationStartScreen.Provisioned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bda2bb728b9f9179ea211c5de083c8f4b67a6ffc4cc2f484c81c9ec4bb40d013 -size 558660 +oid sha256:9abc415fbf3710c1453556e76187d5656f34236cc37d70d4ef5540f4f5862f77 +size 558774 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-en-GB.png index 999b491bf..cdc3aca86 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a411157d00576eaaec753909def5cb459e512070569025952a54fe201d6e7ab1 -size 154819 +oid sha256:acf4f4dd827979d8b661b94fbcb55784d9ebff7008aa6b45d89820cba9367dea +size 154705 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-pseudo.png index c0520668a..71fbc4873 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d4aaffeea8514737a09c15796fae0905ec219308ee75441c27539939b117fac -size 155657 +oid sha256:466cbeed90fdee0429bc0f34f8f3bed65303d243bdc48cecf4ae0756799fff8d +size 155553 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png index 3aba87d67..a12510f0f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6ecc7c38d584e83b6bfac02e73173ae76a13724a405607627761c392c23d518 -size 99753 +oid sha256:1162726204249df8a0db12e9d334dad7683ea9baaa534ea2e2b426eb992d445a +size 99558 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png index 9639389c6..7d393c1f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d2784ee256c396b4a387edcfa48d0a6fda4c5abd1d5476e6653058aefd9223d -size 101363 +oid sha256:1dcd4b4c54d1d8191903fa9b54d126b040abe265180a7b286c8e39aa6a69e5bc +size 101181 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-en-GB.png index d0de8cb34..053015cbf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94e25bf81bc3cf5020c37d3716543d4e8dcb433bc27f022978c5a87f1d0faecf -size 174477 +oid sha256:d3089f48d9a32a3b250ed9e703739d0fc1369fdb7d36fa089916ee840546d577 +size 173899 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-pseudo.png index 0582a46d3..93e334589 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f11c732e76f1f4b29d5ae0afa50ce8ff71696b81401658f841e17115d6b2d7e6 -size 175821 +oid sha256:2e9f3df43abab0fd820d42b0ad815149978b4941b398456dd54e7eada3161ee9 +size 175260 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png index bc7ac08c1..68b23ef81 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0b6fec8f96c0050fc99a3350c9f15fbec3dcfa77334bb741617eb87f9de13e4 -size 115397 +oid sha256:e354532ceabdb2cc7bb71d4e33373b78e25cb34cf220b4ca3654802fe27e72c8 +size 114266 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png index 6b80a4cee..4b3cbb5b2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a5a1abcf5252771b57cf02215188e10ac71489573e83942d2cd220661dde9a74 -size 119573 +oid sha256:17048097a54127f7c5f548c100d0c9c420ed59451b608806511b8e68f9d96b7a +size 118561 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-en-GB-0.png index 2ad01e276..7ecabb53e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a610051a00b4fd05222226332611b131f8fc5e9658fa637d87e1bc2c93f1d077 -size 134219 +oid sha256:301b9f576175ae0a6dc857ddbae534bd5a38fff07266054c8e58067381b203ea +size 138685 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-pseudo-0.png index 36cbdfd9d..62dd66fff 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e32cef689f4965a86619052939adc033bb752ac52e5941e51c6d9381fd6a4e0b -size 134827 +oid sha256:7d31d909bbdb64e16784cf3e2e79a4754929538c3a93de208f009f85536cfd65 +size 139789 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png index 02daaed43..742296bcf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56034d6fdb06f469ebbb3328591e2106428d8f1e6cd52539ff3a5545ea65957c -size 81251 +oid sha256:5f1d721736c8ba925d27ccc32bb69502cddadd0acc03ab38d06561226b3f68f3 +size 87084 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png index ce1dc853b..5993e35ed 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e2a1d28a41ed0bc2e42b4f3a6ac7fedc641052847cc5d8694b30131a742399e -size 81848 +oid sha256:54b2c6e03ee00f8e8590fb79752dac412cc4f4d029968b6f5db329d1c00a00e4 +size 88347 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-en-GB.png index b73c8919c..db8f48c90 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2f6e093ef7e0b912b729c33e94d6c16cc7c825468a7277d6f3c015eebeabed6 -size 205892 +oid sha256:2c2092a5b879f07e66650e694da73da9896f9f40ce3deba284c631eaafe75386 +size 204775 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-pseudo.png index 5b6e89918..52e6e71bd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4285cf44166fdb0238c19f54d30bcb280f2f7492b288d120bb90340f71bfc147 -size 242121 +oid sha256:067a1e57b58205b3c0ae1ac6cc4a21a1c2fdc0886870352bc629c1e2699a3066 +size 242670 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png index 5446c0b55..26bb6083f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f13c5b5bfcb8f51fabd1ed293db69e9077611976fba2d6bb27d19fb5b049dff -size 157663 +oid sha256:db313106f98ed1cf8a1aa970e1d7f2b39b63d1e7aefae018c47a67399f2ebc12 +size 156404 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png index 800c091fd..0ad3749e6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eba5ef08915f80ada9cdead686819f1c4d81133050e830bb7d0a7b9643b94a61 -size 193282 +oid sha256:a291f6421664d59e44219c0f1459ae7ae8f5d9dc33fe7a85600327523217e4ab +size 191632 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-en-GB.png index 9a6c64993..7877cb98c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fecd3111a0fa214ddd4abee38ed961dd8fc466a12c9364d835ffe63689317b84 -size 156583 +oid sha256:7bcca407f9bc3e71f6cb9f1c0b0edb5974cc2b064c4d89638ab23d6f5190fc68 +size 153317 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-pseudo.png index 3f23b4180..317bee778 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:112b92c11fe9d9a02aafe75882d0a8be2f15498155a895f1cd2852e4cc8cc7fe -size 195537 +oid sha256:f693672bb428756705f280fd73e06ef87a462f5b0bc4231edbd68f3ec7ae4d56 +size 195812 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png index 1c73481da..9f35f23dc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ceb7603745144d3597b1cb3ceb3d3a99b27313a23e7ce90da8529595930f66c9 -size 113271 +oid sha256:2dba940f45cd0b20335befe5e9926782f215db4e8996238ef2824054277bfb21 +size 112223 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png index aa3cb05ab..30cb8ae22 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82fb3698278e9ac036b41d3b8886c3aa352d6101dba85c9e113d9f79cff7ce4f -size 166595 +oid sha256:1398b235030b9f7149ab0d12ed3b5a71a9699daff696ce85b91dc061daf678d0 +size 165136 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-0.png index b27e5eea5..d19bb7280 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:371dd1e2a2d02ee5d96a82feb613832e285589676224c942a0ae2f447efea230 -size 98164 +oid sha256:850872071e8b5915603490be276665b781c6cc3fc5f1620ae2fd6263b07d0b08 +size 99216 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-1.png index 0617e2d97..fc28d0d1e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef569f4d1e159ed776aa8b785b0846f03feed3de6bab813796cac551442285ab -size 81486 +oid sha256:a1e7ca6b6b2965e992f5068273af35b4f2f5425326551674cc3b0bec7f49e013 +size 80689 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-0.png index b27e5eea5..d19bb7280 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:371dd1e2a2d02ee5d96a82feb613832e285589676224c942a0ae2f447efea230 -size 98164 +oid sha256:850872071e8b5915603490be276665b781c6cc3fc5f1620ae2fd6263b07d0b08 +size 99216 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-1.png index 0617e2d97..fc28d0d1e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef569f4d1e159ed776aa8b785b0846f03feed3de6bab813796cac551442285ab -size 81486 +oid sha256:a1e7ca6b6b2965e992f5068273af35b4f2f5425326551674cc3b0bec7f49e013 +size 80689 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png index 07d8dfadf..0cc29eb5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6df601ca831dee13480c5529b104019aedd632aab5e8dc241100780a7fcdfd73 -size 54569 +oid sha256:98e2b2cdab292a01ed1480a10e1e31d4ba634b48b132d3ebe4b23f93f31dabd3 +size 54559 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png index d5d0e9ed8..354f46086 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cda4339378df421b5e4b2a018bb0c56be3c5ef9ef45de380083d145f1cb894f7 -size 40456 +oid sha256:a9c50c2096a9d5e5113d88541cf8e5b4d3045586414357ae096bea037db4739c +size 39716 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png index 07d8dfadf..0cc29eb5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6df601ca831dee13480c5529b104019aedd632aab5e8dc241100780a7fcdfd73 -size 54569 +oid sha256:98e2b2cdab292a01ed1480a10e1e31d4ba634b48b132d3ebe4b23f93f31dabd3 +size 54559 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png index d5d0e9ed8..354f46086 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cda4339378df421b5e4b2a018bb0c56be3c5ef9ef45de380083d145f1cb894f7 -size 40456 +oid sha256:a9c50c2096a9d5e5113d88541cf8e5b4d3045586414357ae096bea037db4739c +size 39716 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png index ffe74cfb6..cd6190a8e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b1899c746fbdda24884e1767cdde32f440d90e2d5c72ae8a4deaf29518d123f -size 98935 +oid sha256:360234243b061aa72e37c053e67755fb63a5c60d01b4f90f84ba1bba498134ed +size 98951 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png index 9d1c6233f..7892292ba 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2a09d457aa811bbc77555de5fc66fb027bb387c4059b3c8f0b7d8c8e0b1ab39 -size 99749 +oid sha256:991f11da5c385950c4a47d9bae5aafedcb49b3e6e0cf5c3118d6096e664c25e2 +size 99765 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png index 9bd1d7959..aa3a38126 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f750f6783076ef9f0de9b12bb9e27e19831ed74264b198228c75bdf863fac2ca -size 56084 +oid sha256:7a4791d5d33bed4fe128e2441b77dc3e3a1d1a624d19729633412a43cb7dbb81 +size 56083 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png index 7a6ed95ae..c9d96a156 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:beed583ef35e23e1d950e0ae79a358ba90e617ea1733ae44b23831bf7bcbdf38 -size 56918 +oid sha256:c59b1ca32c64bbc046cc61cac6644d0d2272569425fb8f0e5cdd8dad9068d1d1 +size 56917 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-en-GB.png index a84055371..9099a648a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c70aabd1564c28b3d569804d2d8064c95f1938ec6c1dff409346f9cc59c3ed47 -size 108239 +oid sha256:c1586c67413d70917cff66ec2e9a9805f5128d7adf9a462ae4a739ea9df7984d +size 108204 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-pseudo.png index ecdc212ac..90e6a83e5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc4cc5e2125cadc5b7fb0820c6d018622f5c6bacc22ea4bbf60ca114b4ebcced -size 108655 +oid sha256:425ce93eb6169673298f7bf05f2125bf6fb86809abc46273861bec324e24c635 +size 108619 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png index ab1118bc2..c7126ca79 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efa88f31d1e27e90cc785b5ac63aa686a5334a4513fde59f6b3b3e2f7fb631c1 -size 62692 +oid sha256:4b5bcf8c408e25881df6b552614b8181bc71858a52894ce7354240c1f3f1b6fc +size 62582 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png index 0e61e6191..e3c38f141 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82f0df37a07c27713bd4a26a16d93132b46c3db9ecf943c908d774ccc8667dce -size 63103 +oid sha256:8868848eeeb66d2b1bf2ce93e0c8c36f309e315c8edf3f26361ee1b91b68a1be +size 62995 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-en-GB.png index 629e48f13..1a8d6f09e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cac4f9d97827c57984608e8d92e88d43b571df700821ff8ab39f7fc2c8194ceb -size 202910 +oid sha256:a9965bf35bd618071463ca0c9775c343008a7c927870d925176a3ee2c51af66e +size 206236 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-pseudo.png index b5a3af355..65e33a91c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-existing-alias-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12dc390e62159f23e604d68d24b8b3c1fab707f5122417052bce89678bf84db9 -size 242640 +oid sha256:c095aa9f87df1cc94fff79d5b6687ca7686a950e49876259f8df29a8c35b8a8e +size 240696 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-16-en-GB.png index 7c0d13f17..70493992f 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ddee54b50274a8c2bf94f1714f7a5f9631439971da9eafa38c251c242befc73b -size 130313 +oid sha256:8e022ec5c109f2d42fcf7ff611eab6425a7c7863acad39cf6c1040c7c97017dd +size 128796 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-16-pseudo.png index a0594bcd5..21093206b 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3645f1a7f9191c0199a15ebe05e8818272b062ff7f2819d4996d2ca61bac5444 -size 164498 +oid sha256:90741f64e2d7f142a49bae0ea0fe7563c80acb4d7c990975a26b75a1c0e932f7 +size 163238 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-en-GB.png index 5edf84325..ca575807a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64f32cea0d9b694fdd4a1e0a89b1ae751ed7256003fc105d1f04fb2e5c61b153 -size 189008 +oid sha256:d0aadb9706d95d3cf266d097b2b38a9c26527737ed4abae27cc194bc32eea9e3 +size 191803 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-pseudo.png index 5b928e416..f0b237786 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dab97779aa1b7ab2c9c46513467283533d26bbb6ef4b48f058e689cf5b7bbcd4 -size 236689 +oid sha256:ca128a4df06701fe1afe400cd0562f4b82b4d78f944ef7ae4a52e6909edd30de +size 235420 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-16-en-GB.png index 98c99bd9f..bcc86346f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e049c303050945253a6488f77ccb0d6ef4583d277f087d24f13a458c8087c89c -size 127123 +oid sha256:65f2916116b142b59e10d26cc397484094eeee189e05dc3d00c455ca700f2475 +size 125328 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-16-pseudo.png index a0594bcd5..71e0989fb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3645f1a7f9191c0199a15ebe05e8818272b062ff7f2819d4996d2ca61bac5444 -size 164498 +oid sha256:3e4a225fc99afa8675701d7c69017e8af8d3cfb9e2f917d4712d171a2664d10b +size 160560 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-en-GB.png index fe47e84b8..15ae9dfb6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fe9244e6cb82b76f8cce1869348422b21c587841f9ac5a30612156f8fd95ee5 -size 206324 +oid sha256:cde81a676c57ad398402fcb7c27dd9010516829709f17dc4fb765b6fb853f181 +size 209435 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-pseudo.png index ce9face5d..f228a62c2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-invalid-alias-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5acc172618e625fcb1abd6ee87ccca5aea6e603767367b7ba2f75a0a70322505 -size 247690 +oid sha256:6ed7c2bcc3605fac32726b99933a8f6684b23fcc9b6ee70aa32a9f0e5af9742d +size 242545 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-16-en-GB.png index 271463b8c..87fee5a4d 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cadcce14d4dc728bc369ba47e684d6581fc83841e0f624b11e795044e571f299 -size 128784 +oid sha256:aec24c13df9ae399887225ec5170cc3c04014ab6cf76d9d7654c1035043ae4ac +size 128642 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-16-pseudo.png index a0594bcd5..21093206b 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3645f1a7f9191c0199a15ebe05e8818272b062ff7f2819d4996d2ca61bac5444 -size 164498 +oid sha256:90741f64e2d7f142a49bae0ea0fe7563c80acb4d7c990975a26b75a1c0e932f7 +size 163238 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-en-GB.png index c64aa2fae..c6b631b09 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e2953cf5534d4445c47bd2abd92bd838757a5c56925b628430d1156cc7cd57a -size 143957 +oid sha256:8f9e61278a9f636ca1638c87ef7ae9d9bb1f82b0fb0ddaa878f959d76a47b7c7 +size 144984 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-pseudo.png index 6f6e34f28..cbd96d5e2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ba58b12563afe2c442807f1f826b5aade69af488a865b4c5d406d65329b01a3 -size 172913 +oid sha256:63936d0d6bd93449bf66da931c414571227f77ac9f2575aa06378faa33f2f2ef +size 173263 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png index cdf9b5215..490b54763 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4fd772d63baee2dbb0b7055a5a971bd189b15cbe78456422091ff84eb0c4a6aa -size 96490 +oid sha256:04de36b9165956b0156508eaed5fc48bf2156275352fb9c4f64ae66d96e014d3 +size 96351 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png index 91941b408..53cfe077e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:972c9b9dec8e6539f30a0c2219130c9af4230afa36f088b5d72e1b5f3674df47 -size 127584 +oid sha256:06d24e393e9acbce63ab979ab958b5cb5fddc71ef62c24e07093dd11f2afbcb8 +size 125381 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-en-GB.png index debd4f610..1d37d6a26 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a5003249a3a28954bfc5ed9e6706bf0f52f84e753b42a9e55d2abb2731df5cd -size 144000 +oid sha256:b3f1185a41d31189c42144597f66c73d8afc9c9d65d5606469b990317b35d0ce +size 144442 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-pseudo.png index 9c8f7a714..b49ca1a08 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2586356a8dc1e9edbce32f846e8606be50b64145b51e254c3a44f9d6e699d103 -size 171410 +oid sha256:43c75f6139eb981e55a422da0df84b25b2ea726175c3488429fdd4d90489f185 +size 171417 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-en-GB.png index a0fa6b74c..be006e8f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb129650a38b73b74d82582c82bfc73a10d25f4f71f76165e15ad9b3d3bf93c9 -size 96159 +oid sha256:cf240e37c06c2ba3c44279995aa29546e0f93c50f8cac6d34c602ea4fbab85da +size 95652 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-pseudo.png index b2e877506..8bb78c7ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-without-users-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:72806e7838d514e6760f9f8bd5da32e3091aafd94def82609e2d5fa28409394d -size 127036 +oid sha256:a6e189286552f3de4985108ac466171f4956ecd297e8e991604ca950b0fddfda +size 125318 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-en-GB-0.png index 1602086fa..f66e5006b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43dc8efb1831a8848ed00410131dbb74432622505fa7bb77d6554b06a6e863c6 -size 170119 +oid sha256:fbecc8db7d83ac37e72eb15a3050b21d21efa9016fdf7fdec7e7ccfc9df14922 +size 164626 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-pseudo-0.png index 1c53bb589..d1e37d474 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9ea0fa48335c457a03cb64291a80a84b3b248d961e63777447b56fe1253d78e -size 219450 +oid sha256:51920aaad2821e4cce1033cdc03e32322dbf66fb925850faf8ab70e3daf6db1c +size 209801 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png index e3ab57037..b3630e428 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71978fa0adee6e2731210e78350491d84a33610762b0a689b355d77e2a89a90a -size 122018 +oid sha256:8ae887102a0f9de6332c809a85f986fd1f5cc41287a1a625cdafedff5376cef1 +size 121226 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png index e5dec787e..0b9b82946 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:080df07b7adb030fb3b1e97dbfff99880d2ecb397c1e7745b368538c9769b0be -size 190319 +oid sha256:4009be44ab5de016bb94b6dd1ac34877e840de4c4d22f873fffc6b653063a5b6 +size 187871 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-en-GB.png index d41590c98..2ad8c05f9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50deca012b287d8b87ac14a747f9e67f495d54af46e1b831e7108c8a2a83817f -size 114279 +oid sha256:c9ce5a3da05ab0182e30c97b38c28239268ef9391ce0aa0312634a5513568d50 +size 110213 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-pseudo.png index dc5adf856..acbc035c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c586e0bd1cd29f360e5279e58af24da103d81957c05d0acca6f6e14fc551f78 -size 124636 +oid sha256:7213c68c15313b3bce958bae74392bb70aaa8e18ca06c817412a1dcb7f9131e3 +size 124367 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png index 4f6364342..1254ad06e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b42cc41e5589b9a765bc1ec3332cff981267bb6949f46661bc29b736873135c -size 64675 +oid sha256:f5708077e235ee2f112dcb4be6f790e089d3520861567edfc5ff2b96fb831659 +size 58736 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png index 2983ca12f..b44cf84ab 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Default-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b9d37c4275549091542cc691ce9c52576abaa17d965ccd26000b6bc70f89363 -size 78011 +oid sha256:562578812ee9bafb1ecd2ce4af6b87bb4c9fe7da9bba5080f3646eb88a0c0a68 +size 69579 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-en-GB.png index cb7e290f7..2314c58ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae55a771e173a36bb0c430f07ef9eb1163949251261c1ab34b6767d270000d75 -size 123938 +oid sha256:7c805b58a5b020ec167a778791f18e704caacb0d60ae48b1265c93670299e794 +size 121880 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-pseudo.png index 7bd268ecc..f98cf534c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c86228750f172b2c8beba3c353d0be92c07f29d42a43ff96445585fa38235d8e -size 136142 +oid sha256:b1cc2694362fe2797c4cd1c259167cc003b29108f961970c73285f6f3abff441 +size 137403 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-16-en-GB.png index 56e7d7af5..389ff55a5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f8f68c34e6e3f5328a5e09194c5b95e8a598beac9950ff78429414b27f142fb -size 74746 +oid sha256:8b7097ef021832e69824957de1fa3aee1b6bb39569bea51c49f8ed8ab86a42fd +size 69230 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-16-pseudo.png index 9d3186be5..d01bfe44a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/declineAndBlockScreen.Report-room-selected-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:992e28b1f10659c3169b5b1835bfeb2390d3c1137da02dffe13b196bbd899d74 -size 93388 +oid sha256:96ecffbdce317626a56bf470b562c1d2eaae10dca65f0ab71ee35c916484df83 +size 85508 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-en-GB.png index 0e719fd49..90507b5bf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40ba2d387108c6ca9a04ed04f77241e0a9de4947fbf140b4345bf957a4a464e4 -size 115647 +oid sha256:376ef435e16634901aba81484aa6c452e91883038224e4ba1ad09c8ff613e6fc +size 113826 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-pseudo.png index 7c23b59d1..338b00242 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4e87d0f36c40a4e1d94139a7513a9f2100d580d1d00f1aeb2fcb13a0d4346e9 -size 134784 +oid sha256:91ad9f2ce38414fd35f21d7d44d1222bd88d94c72963ac2c3939401709ae02a9 +size 131923 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png index 7f035e76d..43d3246e1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:157341ac08998795dbdbe8b93d81ee47c9d5759e206715a1af88d0c08d3c8047 -size 70281 +oid sha256:8f64b499b5335e712a544db45e63623f6560684b666dca716584f3c84befe1d6 +size 71959 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png index f8e4d53b7..5c0018870 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efa4817193c1e89c753c77dcc5578880ddcf9d45931961d6c0bb1ef1cdd02810 -size 93578 +oid sha256:1cf576ceaec5f3f09fd93951c0055a74cebd4fe21a2c49f440b66cb2d2597653 +size 94204 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-en-GB.png index ef4c2ed2e..eec170db1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98efbf6f9bdc5db31f87c5a3b2cf8cc8355481d39a5514195537b4cf48f25b9e -size 120803 +oid sha256:259600dcd82a22cd980b95e15be0ac5138822dec63e31d3e8107ec65286a4fc0 +size 119347 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-pseudo.png index 9f2bfd18b..780ef21b0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e18d37536a635ac9c3b4ed1394b036940a393f1445aa603de3923098c3db51ce -size 143417 +oid sha256:a7a7d19b27958ddb71d54581fe3df762ab2037b83300765c0311a9446df3f468 +size 141788 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png index e7644c7e4..2235ed26a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5266be37f284219e3f346c1f636f72c782c10379ce62d19bc2f1cf055faac58d -size 73974 +oid sha256:15bfb52a726451114e0708157e551faa16cde433c7320eb8021e28461c3bed99 +size 75499 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png index 004ada18c..eb68b1ec4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec18d6673be29f92eb39a9722544d41852d189d2989fee0f923da418a225631f -size 101677 +oid sha256:b168322dad0b36a998bb563ff2484c2ef0e6f962bd997e9948f6e9a72856a5d8 +size 100981 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-en-GB.png index 09c241b2a..fe41c325e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b37dd8a18de99e48b75dee74174e64a096db0362d66abf7162906f5e9138e174 -size 103033 +oid sha256:f0142b2c20a573fc300657af3a0d8a096213b7397966ba4c8bcb1af473275de2 +size 102140 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-pseudo.png index aadf21da3..77ff74749 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fb2d86369c003b01ba5647c2bcbd2fdd19dcc652bdbdd4e824f8cc706da8e32 -size 112083 +oid sha256:9d330ce766693b66a0c6df9246b153b9e4e5cb15f2e14bf4c806557024845b27 +size 111402 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png index c3f6afd60..d86a50229 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:825e6d71ddfad3f418a251f5dbd4a117867f2b9c098a2624ca43fb4b508651cf -size 54829 +oid sha256:3c5d9706b51824875fb7c0100696bca80d31a3945f9b7373d0a3dc415880e068 +size 51722 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png index 3d4fa801f..918fd89d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.No-alias-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03760870affe24024075c15eabfe8ffe8b3dfcd9c24a99473dedc9818e106df1 -size 68418 +oid sha256:d42ba35e726039e206f418f56f9799c9f601a2531ef50c278f5dc5f1d11389d8 +size 63097 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-en-GB.png index e9613909e..fcdc35142 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7beccc3c1111498a63be05cb11da67baf56146c893f9fa329089dd375ce69a5 -size 103075 +oid sha256:fe7a2ce2e37e311341c513f5a04f6c631f9a81dda422f93e9a7e4849c7e65e1a +size 101944 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-pseudo.png index f206d3485..5da9eb3bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3552554ad8eb6998cd13a1b329d1e823563e18f04de4afff9b2b2fee4275a0a -size 111972 +oid sha256:7ab926567eef7421b6d51117b146f7197d33364e427a3fe514b54e1d6c668f9e +size 111248 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png index 2a901a395..351cf9e81 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3231612e474ca5ed2a5681162fecabada27d3407b28be708c7f43d9efa80aaa7 -size 54754 +oid sha256:7150cf54f41e6320332242a321a63b7c20f2e25a0ed4b031fb59925f4d8130b2 +size 51585 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png index e379f7e35..5a66e6212 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/editRoomAddressScreen.With-alias-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dcd12e17832a79ab7a4f7bbcb7973e1ab267e2a0d40b850b5dac6b342bdf4eb6 -size 68151 +oid sha256:5f152d2493e4148b13f6a3d4fb3c14f5c212af291465d5d33918fd8bce7fc00e +size 62904 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-en-GB.png index 5fb90e6b2..ee1cf9abd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b07e6722d1b370eca75f23659fd4278bfdef02d9eb8fc88e8534d4378a02664 -size 985306 +oid sha256:53ce71b415bb0056edc5df3121d30469f92f670b2815671094b6d017e264db25 +size 929184 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-pseudo.png index 194a4af34..d68e14e4c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4785244f075c1e2c377537db599085adadcfbd8f11ffeed7d6ff4b034861a9dc -size 988710 +oid sha256:0916587f5054e6a5c20d4285fb544584b6bb3896eecd2ecc0452594119ce25f1 +size 932651 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png index 5ae7c6b97..767dbcdb3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f0fbfb9764b305ecf9e46df7bcf738b593bd4771858cf9a63416d566a4845de -size 362408 +oid sha256:1543c663b195356c0d04710750d5c126f72800ff577e0d086b286bc63e457e72 +size 357357 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png index 5c27b5768..bfe42f04a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aad4833d1d5187fb998e44ef8e42502c29cda98f282718b34dd3be45bd76de35 -size 365548 +oid sha256:180bde70ffbf643f4096f2ea3219d48bc56733555d44339d697123b85be91021 +size 360227 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png index be53b4c47..d94015f83 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c35b8ed0536e692590dd6776ffcb1e7cfa3b4a91b60bbc69988f373f2ae27e0 -size 56540 +oid sha256:1be0ba730a9645608ce4a40d495e4ce93e6703467f5a6d8e6e14b30d606361b3 +size 56490 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png index 51dbfe836..c15820569 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetPasswordScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb3a4250fe594f946f3ec0d97a138582a48331c2e144e21549e49b9d24aa85bb -size 72873 +oid sha256:b6c1d755055acb9bf2275a0d0e5f783c80074c5dd01c315a72c7d8038664fe3c +size 73652 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-en-GB-0.png index f0cbc76a9..be3161816 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dc7bfd672fcfcd23ba57deb6cfc7980d27616e38887b732f99b88b0182fbb3a -size 145150 +oid sha256:9e1f0a6d75f976a4f4cf6a42a582d019b08727de217dffd4e4f40fd5b1bfdd39 +size 144373 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-pseudo-0.png index 492dafc8d..a7266d4f4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9c38ed43a596a49a65793014ae6527a15c312d8c755ac9885850ae465733395 -size 200141 +oid sha256:01641b85a2850974658bbd9020806cb10579d3d0fd271a9de802be0c5c93a805 +size 199181 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png index a858cca39..feca6965c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cdb7c21c53484b98b331b88384c04d189faf2c33bc9643078164196341a9093 -size 106858 +oid sha256:fb456c516cc3aa63a13599d1e0bdeaa7b532ca3b97a9cac9f39f4cf1568ba350 +size 104030 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png index fe5bd1e5a..16adf1200 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9bf0a9cea750ba53cd32c17b0e56b3dc1b94ca734b09dc9261e7a4f9ff2f5744 -size 165006 +oid sha256:7716324fff14c7c0ead9b80dbe1eb93d37e07103901b9879f25897fed9fe187d +size 161969 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-en-GB-0.png index 7aba6c8af..ade5ff7fb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f7e3764e070ecc1bd6d58606f620a96053a8ed6b422b86d47c8375cfc993683 -size 79395 +oid sha256:b94770125de02cc5dd4d8061d943256388d5d0817fd8877230d3e1a2f9559aff +size 79420 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-pseudo-0.png index 7aba6c8af..ade5ff7fb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f7e3764e070ecc1bd6d58606f620a96053a8ed6b422b86d47c8375cfc993683 -size 79395 +oid sha256:b94770125de02cc5dd4d8061d943256388d5d0817fd8877230d3e1a2f9559aff +size 79420 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png index 850859cf5..48f87ebe9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f95f4ce0f3b9ad30d6c5532001f1e13bede80d3c6db6b75172871340efd8839 -size 34095 +oid sha256:e10002a15aae7e1c268ca773421d83d00e339ec61ae1c7cd8339723413fec2a1 +size 34120 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png index 850859cf5..48f87ebe9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f95f4ce0f3b9ad30d6c5532001f1e13bede80d3c6db6b75172871340efd8839 -size 34095 +oid sha256:e10002a15aae7e1c268ca773421d83d00e339ec61ae1c7cd8339723413fec2a1 +size 34120 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-en-GB.png index 3cc793d76..c89690f99 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ee8b1e8d04998034faee44b9e0ce246b0f4cdf588a7bb61596d9486d14d39a1 -size 1099545 +oid sha256:457f5fd2da22c186f26a0552ea3df4b83f2309f97fac2fbd7a8aae97c96f88df +size 1099373 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-pseudo.png index 3cc793d76..c89690f99 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ee8b1e8d04998034faee44b9e0ce246b0f4cdf588a7bb61596d9486d14d39a1 -size 1099545 +oid sha256:457f5fd2da22c186f26a0552ea3df4b83f2309f97fac2fbd7a8aae97c96f88df +size 1099373 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-en-GB.png index 3872dd159..ab12b22a1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14ee65d98203438e47b96b3f6c841a9ae119d36856ef5e77462f86762d9b9a5e -size 1258831 +oid sha256:90465ced7ee6815a71600c4ba736f4b8d3212ae8bda4c7260285baf5242eba7d +size 1257888 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-pseudo.png index 3872dd159..ab12b22a1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v1-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14ee65d98203438e47b96b3f6c841a9ae119d36856ef5e77462f86762d9b9a5e -size 1258831 +oid sha256:90465ced7ee6815a71600c4ba736f4b8d3212ae8bda4c7260285baf5242eba7d +size 1257888 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-en-GB.png index 65198bceb..70bf9dc97 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92079b7c81266f0d7fd47b97673dbac31a8c6781661dc520396ef7adcfdcdf85 -size 1111292 +oid sha256:4cf2de8de535530dccc594853009acfd421f1e416a99b048cecc3a3c4dbe8de6 +size 1112311 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-pseudo.png index 65198bceb..70bf9dc97 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92079b7c81266f0d7fd47b97673dbac31a8c6781661dc520396ef7adcfdcdf85 -size 1111292 +oid sha256:4cf2de8de535530dccc594853009acfd421f1e416a99b048cecc3a3c4dbe8de6 +size 1112311 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-en-GB.png index aad1cc019..7d951bfac 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d0942967dab15b03dc50f23be248cb23fee0d3c4baea535f71884af01fe54a6 -size 1264950 +oid sha256:223a68adbbb38775f6878e864a625720e0c608885f11707034f08d84505996e9 +size 1282425 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-pseudo.png index aad1cc019..7d951bfac 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.v2-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d0942967dab15b03dc50f23be248cb23fee0d3c4baea535f71884af01fe54a6 -size 1264950 +oid sha256:223a68adbbb38775f6878e864a625720e0c608885f11707034f08d84505996e9 +size 1282425 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-en-GB.png index 6ddfb9780..4b9ded772 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66d84dd1b7a18c934c71e407102b946e73a920f3397629581d772022c57de985 -size 548532 +oid sha256:202b5de66cd60d061bc695098bdf6ca30b12ba9911df391d16cd7cfe5284a26b +size 549611 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-pseudo.png index 42dbd5c1f..88a769fa0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10857b7f5d5693aff8739743251d98c3b36fc2bba249fdfb061dae1e817c45f9 -size 567358 +oid sha256:454823890a6d5288fed115b629165e7e5c33db0663bf7e3f1ad62dfcc3ee714b +size 568330 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png index d0fbb5752..72de5a845 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c45110ebb4d43fd5044e230f48d0759d3afa8761d3ceb46ffeb4519fd0e0b9d -size 347663 +oid sha256:06d4625b5d59f30f339ffe7bb869f799fabfd34abea6e32de34a352a90e48739 +size 348554 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png index dd0a6f44a..071aa3c64 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa73330cc9340b1b69b49ec27467a1853588e75ffdeb94c2085d857e819bff62 -size 367574 +oid sha256:97eaef198b2ae8a269d108f468461c428486cb5ad49fe48e99722652e72ae17a +size 368509 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-en-GB.png index e4fe67d7a..8de045a90 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cbb7146c76f8715d9b928d01d8f1db6e06ac2da1ad6d82cc2e0d3c298594bb0 -size 118260 +oid sha256:56e86cd895bd46d5d98901cbc856c9b1f7e913bef64a2a8dab64ea52a4d925ff +size 119260 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-pseudo.png index d23cb3778..9ab9febed 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15a8b3565d8e92b05c517d4f2893343b283f226f03ee5bf7ae73db3c4f7c6a15 -size 124580 +oid sha256:1b5541f555cc8a2361a472e7013b873da022aca102dee7cd709ddac01b435df1 +size 125520 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png index 9d1143ac7..2b046600e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c090e61821e52c7a15bb06e38d4fbdc24157b4b3bebbfa03fcc9b764e17b70bb -size 72367 +oid sha256:0355c1ca5193493c0967fff877e3ec84711d6b036c93d85ad88f33e63136cd8f +size 73168 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png index d8c45d624..fc8b87987 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0680373a759361f060727f6f6325ad579470101fef603ea9e07999a8c4c76d9 -size 88841 +oid sha256:1d203c8e1a8875ee2ba61ff7908c430efe4db3d95688daa142520c3bc3338be0 +size 89908 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-en-GB-0.png index 3aac7fe5b..ef280cd62 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8330191544e3657e0e3533d668e9b0a87d026a657d85df753b59d7ac7dcc0a88 -size 169757 +oid sha256:1d9c64db0692faddf8e6608fd730977dc8d18af3e9d746f4f22906e6e74f7622 +size 170039 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-pseudo-0.png index 7b3d59fb6..04fc19539 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:634dace53b6cf3fd5333581f6af4b7a4fc61aea536f9c3521d4066eff5bf4bf9 -size 170141 +oid sha256:4879bcb7d33ec768a5191823038d16e8b63b8857b13624a3c09da49c66668c5c +size 170365 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png index 50573149e..b4eb620a7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76d43f9eeaed0fc25fef35f560cfef46968f58406a2856616b27eea74853b93d -size 103810 +oid sha256:74c55142e6660edb7245668c8ab4ff2e49484e06999efea325bac10b60a31238 +size 106586 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png index ef34610d4..e5930f1e3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4437a44dfc2fda3db1823458d07043f82610f70065bece40e5178301bd536536 -size 104142 +oid sha256:be08ab703143aff6fd948ea5b70c2eb8aa167bccbff78e4c75bbb5c61c3cf43d +size 106930 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-en-GB-0.png index 4d247262d..d7fdeca9c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6ad3fa0fffcebbd96be208c97874b8ae40b3b1ee3444b59b707f5953d254b0e -size 98613 +oid sha256:00b6f9130468d41c9ae29a20687d5ee4155c71d20f4925b2e163ea8bd85a5fa2 +size 99152 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-pseudo-0.png index 4d247262d..d7fdeca9c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6ad3fa0fffcebbd96be208c97874b8ae40b3b1ee3444b59b707f5953d254b0e -size 98613 +oid sha256:00b6f9130468d41c9ae29a20687d5ee4155c71d20f4925b2e163ea8bd85a5fa2 +size 99152 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png index e67d94064..26ddcc379 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:194086a6886fe626f43eb7d5c7526c6043da70b5f8c7647908b5b1912bdbcae9 -size 50247 +oid sha256:be8bee503ca1edf83525bf534c08458ccb46e3a4e3918c15adce93ebd36f049d +size 50489 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png index e67d94064..26ddcc379 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:194086a6886fe626f43eb7d5c7526c6043da70b5f8c7647908b5b1912bdbcae9 -size 50247 +oid sha256:be8bee503ca1edf83525bf534c08458ccb46e3a4e3918c15adce93ebd36f049d +size 50489 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png index c27952daa..5ff7ce824 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03fe18082110028b6a833b5a7ddefe87acc8d148bfd277deba361b30945011b2 -size 111861 +oid sha256:123c2b865aea909f7b2fa9e0cb655fd3cca133c81a271787b8b1315d8d0c669e +size 121071 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png index b839d36c4..8dce84211 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9d19c4496bdefd144a70b97d7597285c04b48a4c52a6cc7e67c3b5eb4eb280c -size 116135 +oid sha256:70a2961d11834149d84b76ab52ba1a51595a6071dd9e98d469b44e19ae3dfbd9 +size 124713 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png index 95fd50f8d..f895b1bb7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e2f3272221c65b074fec4533035a91cd70edbd5a4633a82a3c24c4822b5223f -size 67716 +oid sha256:74641b5727f15768694edc328100a84dc8d208496214814a269c0c9fd1707b32 +size 63292 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png index dadd4ce41..695b27f82 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be8e95fcbe4f70a985de7e2eef2850f52d5bb764767cb11f04bb451cfb2ed157 -size 78100 +oid sha256:3c6d34ad9d15d08d23a1dadfd28d325f07b12ce71674be992dbef70ee2853126 +size 71564 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png index 41ee03565..7068296b3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:539622f28ab869db49837df4d0d7980ead4395c6c13b537c32ecbf827a4d05f5 -size 298576 +oid sha256:b4ee4c451b4d680d2e6d990f60711b751e8b8d0b27f1acc0b49f266ed485523d +size 297840 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png index 0547df78b..de263be17 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1204bb68a91c48977ac56dd401b9fe11d66778c85140699b01dcec4b7f5b15fa -size 308600 +oid sha256:ce364179c0b9368ee2ee34a9cc3440b598fa75f73e5e76077034357e3c5bfe0f +size 307470 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png index 8ccf07021..e61430e5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d05bc7a52b09f832d099a9d7e8a2d034360503fbe798ead4b121d0e6bb4261f4 -size 219071 +oid sha256:bdf1839a33597cf4e49cfb30996b0d33ca05725320a26d89c6fd5ac58d133284 +size 207044 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png index 7e6555d92..dba7ab50e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a39c6f2c578cd77e0bf99dc12881d52ca3323305eee54c3eb0bcb5f16acb59c5 -size 225322 +oid sha256:d6477e0ef16a2c0a0d74abb12c72d20e6bf3f63949fb7828b30abd2ceba017e8 +size 211967 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png index 6bfa9b441..ef52aa83a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd987d59e92afefd5410c8a7ab81396c0b1d92d7f7ff4f1cd418b51342e91395 -size 110390 +oid sha256:8816978a676cddd04c5d809ecef0af81e2004fab010002850dcb3e6841d1e9eb +size 118640 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png index d85aeceef..ef52aa83a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b69d704994106be2aabe2d6dcf15ae22b43becc34054175f2a5bf0e2ab540ca -size 111025 +oid sha256:8816978a676cddd04c5d809ecef0af81e2004fab010002850dcb3e6841d1e9eb +size 118640 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png index 5a2723a81..04978e027 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a9cf69e89d2636a1e941b3a3e660eeb12546b8f4222f631f783f0e168f0ab99 -size 65679 +oid sha256:171587b7289653a33bb5d6e1dbc4454cc19044c447215c1aa005e01c213daf11 +size 59826 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png index c3b0f48c1..04978e027 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:462ecea74d80a94351f28bf401f07b772b82c992186d9db4dbb79c83963b1dda -size 66401 +oid sha256:171587b7289653a33bb5d6e1dbc4454cc19044c447215c1aa005e01c213daf11 +size 59826 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-en-GB-0.png index 4f618a5e1..0b97b7fd5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea2cc7d91e41d0aec0eed3d3eab224f34dc6db9d720acf545bdeacadb5f8617c -size 285651 +oid sha256:7f1ccbe7325a061b9e4172023ad488e3bc84d1bc78258332cef1d001fe0c981d +size 285976 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-pseudo-0.png index 688ab9131..47be7f958 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bab250389d2d96e64b972c46d753d74e805240f2401d30a87d8b01405c564350 -size 305385 +oid sha256:14e84577293fa0d99fa5e47e64f56abdb35ddcb078dc36c4003afc38e35d268c +size 305735 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png index 095ca104d..63ea6a73e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b39b3589ba23ed88fb44da76536f17b882040c87ed5597b8be273329cd1aa6d -size 229692 +oid sha256:6a06af6bc07ecafee0421eeff23e5b094bf5adbfd6cf2690dfc8c34ccad916c7 +size 230104 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png index 873c045d9..a16ac199b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38e079eaac4b2c91f988e2fe3f72ba263b412d7baa88ec3c262e75336fa013c1 -size 314011 +oid sha256:9e25479532f86cb78dbf03fc8f48429a6e090614728bb87c6a40edf521660803 +size 314381 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-en-GB-0.png index 520ffcf49..4e3f2cf6c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35a8ec89cb55bcd41aa7a022ce5dd028d8f19c7e09f69ca120090bda9671f113 -size 184071 +oid sha256:d9473d6248de5cc91acd1e0f81e2261da1ac1e9e59b60f6e37f7f70f31c8988f +size 184448 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-pseudo-0.png index d85c0dd61..6f5568ef3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b8bfeb1dc08cb0c8cec725eabaff5a0c0235b0a0202606a55f84bfc8a1779ac -size 197627 +oid sha256:58393452e2f5f7e6e7bcc75a2c80221accf9a857011bfb4820ad4d6f08a2f627 +size 197982 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png index 8b6fb835f..66995b7e2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f9cbb9334a0f7f5b40a24dd53eeedf854ae65a5fdfd831df21f4c2ec7bcb4c9 -size 128793 +oid sha256:3c68bf478e1f36fe2d9ea892f94f0ee136e7fab9dacf9604706af92362e72e4d +size 128856 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png index fbf515fc8..eaef90986 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39f875068096460991dc69ea7199fe4621cf63baf7080e4de978b28b30bf4df4 -size 151585 +oid sha256:2416284d36d8fc81c1364625bca012275a8dfd18555e3689f281bf6b89d42ee3 +size 151639 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-en-GB.png index 09de4f378..8c5c49bec 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:580afc74fbb53628ec66643e67c643fab23ea1e2e0717de0f8622534b0cf1724 -size 101351 +oid sha256:6df63c044269c23a9f4d0b897165a9172761b83f7057ac684363071035a472ae +size 101328 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-pseudo.png index 88b3693a9..3798bb879 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1c9b76234430e9d6d446ffd28220b1f6a370fc2239885fc55fff282e413b3d2 -size 119143 +oid sha256:3c94d7a2f3a76cda16d5e14353efe791eac36f10c916afca040da2c022e0e1b7 +size 119101 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-16-en-GB.png index bb613b8d1..ddb2a7294 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adf6a9788518c6b10fb2c7369358b86004fba197f97913f2b74fade671e62046 -size 65418 +oid sha256:5be916a6a456d7c438a36b2d5fc3d8546bd07ca1efc64d208e266c523726e970 +size 65393 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-16-pseudo.png index 0a0053f5a..f81a9cf8a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:894d0d1de52a98c6446e955ce68c1d7c2f0d14496742c357410653c8a1c12a61 -size 92453 +oid sha256:11b7800f133fab948f15be260b3d8285297b89d0edbd9ee9413c8f7b2d90699f +size 92413 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-en-GB.png index 6cbcb3f62..e710a1eb0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5049db4e463707a92bf4d6a82001f6bf06f63221f182870bf0efb88a9390fbf4 -size 242678 +oid sha256:040608413502e387a6f50c9a777997f95da70bd9608b31ac361a8946a9443b27 +size 243013 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-pseudo.png index ba784a794..7600558d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32da7e0537cbd586dba8bdb79d155a81c7f5fae7a9749555a0ee26b90bd5b715 -size 248416 +oid sha256:4b715a88f425e8cee67f19230ad2ea1b8d972f7c01f52902f0dbfba9f30a1e06 +size 248730 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png index 8e855c2b0..3bf3d334f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1cd038069eeba5235567fb9ca53768b3675e4e3a6ccea351c7ef846b005f310 -size 180368 +oid sha256:5c624e1ee9bb1dce46613bb72eea3f04503855267d04d65bc5bc3b8858c94b85 +size 180417 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png index 25dc65d4c..4684065e9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0998f864dfeca1c729cdd5aad48edc0509c611ec0974538ed1cfb0f443893d00 -size 184752 +oid sha256:c50bdc9c6e9fbaa9818e978a6e43ba7c99e79f27c137d412570b15f232705c8c +size 184792 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-en-GB-0.png index d6988a40c..d0dc50ddc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b23bcb01651de0511115c9125af9fd5edc25a50c018a7bd5c039ff39dbfdbf28 -size 113907 +oid sha256:25a029e32e181f72ff06d61376a7fb00fed1c63cfe0abf377407cd0707e2df3d +size 114104 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-pseudo-0.png index 89f63a5d3..d15fb1aa0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd8f4e55823bfa0e90ed260e30e5de64b807fc5518e2838d0aaa8e570ed8b3ee -size 129617 +oid sha256:55c58297234fb5c2849bc3e8c1b19ada63b0377a6476782734023a1e60b1b64c +size 129705 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-en-GB-0.png index 5e5b90e50..9781529b2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd76695b2b8bdaa1a4705e35af5cc354299456db560591932183a7a5bfddf6b6 -size 68547 +oid sha256:6647c6575b9f7317c88a66d59989d0f50f337c5c504b9c81af1c21108354f1b8 +size 68792 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-pseudo-0.png index 1f4e737e1..de2c61434 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmationScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e1225c6cd0883125e70e72c8227de7d89cefbf8ed680b39b618c739750e9010a -size 87354 +oid sha256:18f4976772436c81e11327de1e73e881244e3eb3d4bd76ba3116802de048fe06 +size 87422 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png index 631e1cd51..76e9214b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f176403f8d63f7d8fc0adf29c670cc59cf11ee47f8186eb415ca9b75ecb8c977 -size 53111 +oid sha256:e60a2179bbd99b665e39f96cc986736d2cd96c1c14ae510db62b7541931f3d8a +size 53320 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png index 487c5fdf9..a1a216c8c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e8362256097c0b1a297528cd3d5a169492e9208563c930e53923b241358bfc1 -size 68802 +oid sha256:9289c8832f67c4496a219b4a64037a5fe10aa1b3fd8f2a71e786d0f0b529c648 +size 68527 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-en-GB-0.png index 79cdaac41..941aa3c68 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5444d8304164d3b2d8ea945f7318016e644d0899a64ed151bf173662dae05dd3 -size 111541 +oid sha256:39acd4f6297e6097965b10289749f7ce06cc791566c639b2cf34af007777f78c +size 112900 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-pseudo-0.png index 79cdaac41..941aa3c68 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5444d8304164d3b2d8ea945f7318016e644d0899a64ed151bf173662dae05dd3 -size 111541 +oid sha256:39acd4f6297e6097965b10289749f7ce06cc791566c639b2cf34af007777f78c +size 112900 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png index ea47bb39e..2ba01f744 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69413795da7ef1872590b94b3b15619aff15d428c21842967234793c98fe57ca -size 100824 +oid sha256:f5c29fd24716746d417675755b687e7df811d75d6eef0d150b54c2acaebd753f +size 102144 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png index ea47bb39e..2ba01f744 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageMediaEventsTimelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69413795da7ef1872590b94b3b15619aff15d428c21842967234793c98fe57ca -size 100824 +oid sha256:f5c29fd24716746d417675755b687e7df811d75d6eef0d150b54c2acaebd753f +size 102144 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-en-GB-0.png index 61c7488ba..a55ba030e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0458c88f97371525d8d2392fcd36be5f8c501acc2076a7f5a92aa5a6a11a3c2 -size 4551418 +oid sha256:ffed4514d6d3675278056c758c13d2a79c8592377e194750cc7ea581de4c00ab +size 4551646 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-pseudo-0.png index 9114faeeb..49717f826 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:319547b1fbed1947b2f904f8443bd43424fae1e6d886401396256d55303c3c19 -size 4537191 +oid sha256:18e3a2d6e8d48e2ea73b4b82fdbee22c4976ca8e8bbad57e67f51c4f53176252 +size 4537091 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png index b5e0ea4dd..b9e99d063 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dba9e181cd077c05b96537f35e40c0638505500e198f428a7c3ad263b1604e2 -size 2123571 +oid sha256:37abbdada765ece3e53f11f937b2ed0e981fcf305522b014beb944b479054259 +size 2135257 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png index 4c9a57c1a..40db8a5b2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24d3485d6864d1e195163427dffe626966ffb3fc1168484c58ce09190fec6bf3 -size 2112245 +oid sha256:db09315a97c00331249f0d6f1a57d5e585189c1c2d90dd90b0f796c78df3f89b +size 2124775 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-en-GB-0.png index b430df0ba..52035a986 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96ca7ca00c3a67797876ca1aca2318dbdcfdb47703a620b84af6131296c031f9 -size 86557 +oid sha256:b1b467fb506c9fd05f37f20817b4a2dc57ad9a114cd6746d91b7c604c236c9f6 +size 75621 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-pseudo-0.png index d15213997..74da4f834 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd6cc6daa3e574ed76b6ae02084fbcd73e9982b703200139f680532aa1bc32ef -size 89063 +oid sha256:344070582340a20b070cd75141f8f1fc70d0761d0cf819331a58d5f67ffe4a25 +size 77799 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png index ac2497706..28be112a3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88013d3102b7d37ff7844887fa99986b00f032556804593d924e792a2205dd24 -size 41296 +oid sha256:d51c0ee2ebb423fa2c873e2db2c7c9e3772f8a1564399608a1845dd3e75cd2d5 +size 38224 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png index 1677bf826..f6bc33633 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:511d2ac95d2f19aaa1876da61fe9dffcfe3b6a7d54e9c81ff859092b4aa5dff1 -size 43366 +oid sha256:7b2aa5cc2884fd3819406f61b0573f1cdde7a0415c1258d3a946e5b1a3ab30fe +size 38208 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-en-GB-0.png index 1f0122950..3785d24d9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b5ecd6e793e32c8ec19cf7db4a430e7d3f33aa61c9c24fbc7bdd405cca34b33 -size 82049 +oid sha256:0c8cb1e58a5d450687711d0c4d6c50f9d356cb6c13b708afdc60c01ce659da94 +size 82063 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-pseudo-0.png index 1f0122950..3785d24d9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b5ecd6e793e32c8ec19cf7db4a430e7d3f33aa61c9c24fbc7bdd405cca34b33 -size 82049 +oid sha256:0c8cb1e58a5d450687711d0c4d6c50f9d356cb6c13b708afdc60c01ce659da94 +size 82063 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png index 8db9bc1ba..f96514c76 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a04861f7a4af6e8dbb53995fa26e1c2ef07ee05b6e35241375879f1b1bc2ede3 -size 40855 +oid sha256:ffe5449c6e7cf1ec06cfc0f28384eb518f72428cb6ff1973bb2dc47d940b52b3 +size 40880 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png index 8db9bc1ba..f96514c76 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a04861f7a4af6e8dbb53995fa26e1c2ef07ee05b6e35241375879f1b1bc2ede3 -size 40855 +oid sha256:ffe5449c6e7cf1ec06cfc0f28384eb518f72428cb6ff1973bb2dc47d940b52b3 +size 40880 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png index 8f0af6bc5..aa1a3e5d2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7517ce4f904f7e8db36995817f1a7b5143f1e2f7c3f266323266481cc17ad7e7 -size 204272 +oid sha256:0e53f423eeac9420d0ccae31c47be8409f836006a4846ba554def6765d8c3bed +size 203112 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png index d2321c557..dd4910c78 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1777b73fad23b2790daa0536bc5c3d0c474fce62ec615a271a5313e597e9352a -size 214984 +oid sha256:787ff9a0f80627dad05d44fe8ced266d963e6edf834d5e8597d60463f4b6478f +size 213824 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png index c3806054c..17cdf12af 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:999709d4b98c7e8c63a9e81e044161d74a7e27431fbbe7020346ed7ae6d8a5d5 -size 159354 +oid sha256:2fc5bc833d57743610efe9ecfcb6bd1b20b70a8399fc2ce20c2c50bb014a4233 +size 159388 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png index 2bba6a78e..b7a12cc94 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9891d566345fdcdc23b3dabcd7ff8375c72161202900061a6c27211a8ae84ff2 -size 173741 +oid sha256:195adfac9267dd6a9b3586a35f9eaafc64551d1c536a7441ee5a371383611e83 +size 173775 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png index 85b78deea..a543fc17e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08aae02a23942fd31d7b0b8baecaa03ec53a598218ab171884565bd82980ceb5 -size 204243 +oid sha256:87721cd38b5abfcc92be28bf91454450e7b7a5f44270763f9ac201114b5d3bb4 +size 203083 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png index 4995e4569..d46e858d7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:948c1949e414b7d929b11ea4cf09b2f9eab092a24d98c82a2932dfe277e79e8e -size 217128 +oid sha256:bd1dd390c0e0969cf7317d563c18c61e84ca7105b6cb23f603666ff1e73704af +size 215968 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png index 78a8cfc74..9a07f2395 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1f165196417cb2bccf27623250687b80e64c1057e298a44491867e8295d159a -size 159243 +oid sha256:1b23893ad6f43306ae45ad916f7436c0cf8d17f234fbb8b9e509ecfff2a87bc5 +size 159277 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png index 05921467b..2b2387b1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf340412259f3d8e5366c9bbc59c97d678723809ae3702eddaea7604a012ae66 -size 177701 +oid sha256:7a8c878e2e440519587158c4b2c9978dd5da16c7313b9e155c8ae0633a14f382 +size 177735 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png index f67dfc7f0..1882a5331 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a04e3bb5f98d5d507fc109aac61ff1c0374f32bf63b0ad95b366bacc7669396 -size 188134 +oid sha256:fa16085ef1d3f989f01eb43b5686ff19c3838b751dc4168a745cc66d71e94f86 +size 186974 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png index f76ad64a8..713e15299 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5819f6b04d6aad765467ecadccde38ac80dbdcae978241ded4940a4e3dddd0c5 -size 194203 +oid sha256:680fa23493566b93d88c8add51c0767a2eee968e9b85fbffa4aa06fa6d65f8f4 +size 193043 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png index c1afbc4e2..d7b0ea2bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f271b7c81e104e8e444dc6da8adb87433873e90ba50f2b48c17868902e82373 -size 145322 +oid sha256:5b200afb4a895ecdf68a0ff042fd249b397a1efae01dbe4eb4223a85813aadb1 +size 145356 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png index 60cb837a4..4c3148dfb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1f40c11dfe00710336e2159241dbfb701a92b770ff452a41c8a5c05b2922557 -size 153897 +oid sha256:e1e3873317f9d7407ebb9cfeac9bbd994ddc2b5856a32c3d26b48b940c6db64c +size 153931 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png index 62c9a8cbf..a6fde0b15 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f3364963c19a9dfe115140683271265b354c952267b114a6286e31fb1fb06b6 -size 201392 +oid sha256:a605f4f01ec7521f869b7ead8027fb88899a55b2f2f9ac3ab5a30464cdc60b73 +size 200598 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png index f41fae721..87d0ee446 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7a89f555c205155fd57f64603f0b3d769c82258d7640d91aa3b7f539e3cb91b -size 208889 +oid sha256:67527c71fad184e8d00749445efdc9c359f152c381d58c2f342ab9f1fa1cc83e +size 208079 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png index 948a432f3..388b86670 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3438f7668ab6f572d07e7fada5bb558cd24fbdf617d2d74a6baa232d3c0e2009 -size 157288 +oid sha256:a2e7fc3ab96b1ff45228494b580d7f78e4c43c145bff5a720b43ab20e00dcd1d +size 157323 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png index 59b10c152..844d62135 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfba4535c2bbf47e96476325f28251879e179344c083155eae65d1a65a5c042f -size 166499 +oid sha256:58e7bb75cb6225c255229a0667c48396456ddb4f0a757867edd1fe3d37f1de24 +size 166518 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png index 9d95af3db..d6e1e2ef4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dbe57a6e9b629aa8211fe710c3da82583e84f6ebc7fc18ab4b78de8918be6ea -size 135655 +oid sha256:7ded19d256f8aaffe6d88faebd47f35f2a97d92435d984236eb2de4a246897c4 +size 135670 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png index b2dc2d7f1..ac80e2a1c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cec2f0d6b5d55a6c1fbe662da4af2a50e3e5acde2169b6f8858eb6cf772b3c0 -size 143166 +oid sha256:edf3b6507ac10d6c2ebcc205b77197033301f90fef09be1ad360be0a0de84e5a +size 143174 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png index c4ef96cd2..b20b1c58e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59ef5415fffbf3ff0767f083a413ed23f8f91b8e05e291e2b0be89138aade04c -size 87825 +oid sha256:0310cb41f417c1a17eaefa2266dd6a964a8c3134505d519e314876150326e542 +size 87857 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png index 50b9e4845..e34d8c4ad 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dceecafcc4141e7d547e9a247683ab7944e27ad1cbde089ee7108a8e9ea0a197 -size 97199 +oid sha256:866f219044c83c4ced8ccc06627e64d4e28fe0f2ad71fb96dcaf1e67ffb343df +size 97226 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png index 08e1a694d..73944f674 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27823508aef800ee5e601cecc5e96d9e76852504601b281292f7476d1f74a8eb -size 187598 +oid sha256:82de11b9a746fe10ab8d1a51ccf3de6b675f4e119c7a539bba074428d603a36e +size 186741 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png index d55111f70..1037bddea 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f56f3de7ee2b2e4973011281cb965e4e1056ea99e42c6cbc9be61f8eff002d69 -size 189152 +oid sha256:991e3e82e6c5c909c9c666bfe6a4294169c65339bc992926c05fff8a3422873d +size 188300 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png index 5339d1bcc..604c493bd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eac77fde80089ddbaf7b70355f3d8801ffe3f08e53112d554e47abf3098a3774 -size 142611 +oid sha256:353d108b89b701f63b4074de32493bec54c1c71703812af43d136f749738c356 +size 142905 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png index a26248781..054dcbdbf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2309efb8379f8a32c999420d6e9aa3303b73980fc29e3b1a056420f35225642b -size 144100 +oid sha256:a9f794c684ee5aab9b95cff4f622cfad1e96477b5b762418b64e1991422ddba3 +size 144394 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png index bbf21c1b3..9d249a5fc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e5f349e572d1f643ad57d47644d4080bd532cc3964eb0b793f2bd00f5f904c21 -size 201741 +oid sha256:393dd938a05503d644e614d05762e42cb51873cdc1d0d3db6f93f27f3e7c3982 +size 200925 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png index cd86e4a0b..e5ca32a5b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ec6d2be1d2f405daf5a65a5b227fa68831df5e9160b6ab2b8ed9d67a8588665 -size 206726 +oid sha256:88c7214c7d459ed8df3105373b015fa6ef5d1115f6f638ae8caf27922ce52480 +size 205958 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png index 6f7548b0e..4393fa62a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b2fb3e561ffe5e31b4e9897926582f6e2c7e904b4e74f73f1f6dbc3c2c0f86e -size 154270 +oid sha256:f7dda451fa80ee195a52de5cccc75478d972715891bd4acb6958f66ed09e8f50 +size 154534 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png index d1c47938a..d0b1000d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b232ea9859cfb1396e9d34c9d6059ece642e1dfd621ef1e1b4642071557cab41 -size 163257 +oid sha256:4f52e16413f2484ce0abe7b687e09da36763072a19373061b90bcea115160245 +size 163348 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-en-GB.png index 1a8ca241d..6222b1100 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82d68dc2e6ab3547781f871511a83a8153942407f966a036d8836e049023b255 -size 110341 +oid sha256:d3d1a74891a19da2e20f3bb8437fc24a5a1146edc8dbaf6d9374bb23687be93d +size 111699 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-pseudo.png index 2015f9446..f5929e5db 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53288c6df0c0c9f96297a9e97e06a9d00ebdc860d24ac4072cabe5f2989522b4 -size 120127 +oid sha256:97c8dc56592e40aa596676d808828738e5204f2f7a5e2f3bdd4a6dc743ec5949 +size 121730 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png index 0cc0d9d97..87af80538 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d935b69c623bddfecd5bc2dc7542b809917e4678282ac539444712adb5289c4e -size 68154 +oid sha256:0f4623754be56fd020ac75e89819bd6fc8266e2fd01578cd90d857533acd9980 +size 69475 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png index bb7458866..bce3958f5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2041401d6e26baa1052378eea72ff08dbd4e739fd57ffb6e81603fad29e4c83 -size 82058 +oid sha256:64d4ceb8a4f268b60e9f490dd6140653881561129010b6308af7804af3856378 +size 84146 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png index 54d6b6f1f..f882ac381 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6900adc4cd78f15925863f506021588d33bdd80ed8e4967435a8dc465c3a5c13 -size 202636 +oid sha256:ff679b59e5780125cb7fe193105fba1f5b38d54fb3998bce6e3e2e461b17e4ee +size 201793 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png index f64b5cf0b..7f8bd8422 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a846e0d8f7cd1d34aec2e50999d9c10d8e9333e49fc79c360677cf0f16ec5a4 -size 215730 +oid sha256:db8b47b4bf5cf551a6bacec18b4dc3021b6bc0133ad97fae2f6ed30b79ef0217 +size 214884 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png index e59bf22c3..561c8e464 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32be5633dab85eeddeee7684f82538ead8fe8a8b05cc83269d6633324897557a -size 159400 +oid sha256:2ebb564d969e97583d3e22b5a227c8d8d223437f9602b84f1f3fb11818472b80 +size 159665 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png index abdd610dc..46b684402 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91c842cb7ceecfd8b8689b8e09ada78d2f5ba354119d0f65ec692931b7e9047b -size 174361 +oid sha256:8e4a3cddf33c186dd4196700f6a156da1544844e1fa552846dd75016735a4dcf +size 174632 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png index 0099417cf..752fcecc8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7377923e95f6e052ffba73cfeee5d1e9567656d8d017be1f7cac571f95217ed -size 99773 +oid sha256:055835049c253c4e05a3739e51a7adb16f7653f5720c7cf7ff598ea06afead45 +size 100090 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png index 7011f1e79..7af2469b1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd68b89f449b4c6823e109c57bf7fa8a9cfd6bd53575754a74e2b9a8ea053b39 -size 115061 +oid sha256:7864850416ce40eb1b0f4e0bdbc0e540e3c0ec03719719931be4736d75864777 +size 115375 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png index 33d581799..ebf98a279 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:841f21c6026c6ad270269f08d663fd1eaa577e819094bf3d9ae45a134a678ac7 -size 58856 +oid sha256:40d914b5dc4e677c049a914c25f174692bc37e75264e976960d87d9ac92e8753 +size 59087 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png index 18c161a14..b200c8e1e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a532bfe35f244be30367c3e2aaf3ce330d3ced13290a9002dd813fc7bee11184 -size 77772 +oid sha256:56431a9fd21f367332b4c314b41d20727a06a32aa4340ca1fa1585629614522e +size 78009 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-en-GB.png index 434c0ac06..46d8c6491 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfccc8cc6f248c09748e20cfdf5cb663dccb783b5c4af1eee7e73e925c282a10 -size 92265 +oid sha256:4cc21640dc10190ddfa345a83c8e4bedae2cca526f3a517980b917df1fd819c1 +size 92313 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-pseudo.png index e3a7fe95d..153e92d32 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b774a8180dd03f6b1d99132c2e240a454ba27d7d562ea18f1fdf5edcc8eccdeb -size 93111 +oid sha256:4119ef48dd28330cbe9989a5e2842795b2e14874a7e03d353267a7530041b475 +size 93248 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png index ec225234c..ece0aab18 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d6532b2e58457f3c6534634134680e2c2365752f3da94dc236f76da3e905cb0 -size 50411 +oid sha256:123673378b70eba1774e7f738d0b9704344158dc3ac6a8316724628a6317e161 +size 50246 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png index 5215088fd..2699af32a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbc7b975d03869322a908426a86dba2d8c3e6601bc56cc5ae41c3725288e1228 -size 49774 +oid sha256:3549c8ec426dbf2210ff9e7c0969ecdb7dc5b15d605d157b3754a9c09b0a8991 +size 49872 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-en-GB.png index fc4422535..510baacd5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de8af2ce78c6c1eee322fb73748f76bc0de0bb2eba9e77fab255817c5ebbf223 -size 95114 +oid sha256:dca4b68102343046709e0d3430e0e2409b04f47fa6a35e8df489246be29500e2 +size 95109 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-pseudo.png index 335c5271b..36d920680 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-No-Display-Name-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24838969dc5a692f27101e293bfa81a961e2ad9506796cc4f5cc0b5c3f710056 -size 98392 +oid sha256:6f20f61ab302e2a69373646f3e713e5bfe729d317ff19cf5362d2b67cf7b844d +size 98462 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-16-en-GB.png index 0ad9228ba..36c64ff7d 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa31b4b20c17a19683a630019493234667e0f0606ab2eaf8484cb1a97c6bb078 -size 53089 +oid sha256:32cccc3b9096777d7385bb34b4f76d1ae023a4b4d96be3021dd2de7eae4b6526 +size 53001 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-16-pseudo.png index 0e5c884ae..37583f2fd 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f75fe96fda315c965728e76f80e3a0dd5ef32f1fdc6370ab7c9c9f60e1686575 -size 61636 +oid sha256:f6366953f27bdf503d01e7b8ff34396ac7ba5e514d93723aab6870229979a759 +size 61857 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-en-GB.png index 0e3702d8e..19ef55087 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:515e44a40435c90edc71b54d5b6d8a06442bef97c378aed3a4580d0e4789c12e -size 97259 +oid sha256:f0ee54a8bd1364f456cedf7c8a5f6f0652d4e26f3d34bf3a14b8fa564ae41028 +size 97300 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-pseudo.png index 7fdf37e26..566e6eeb3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00039bed836352d6b695a0261f04f81291894393ad41d799a0a03fab0999fe4b -size 102160 +oid sha256:cec2564a143dceb7ea8c6b23e1bb2f2f4626af08ae11dfe6b4365a4c95f96efa +size 102100 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png index 24d09afa4..77017eed8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4f2d868dd121d573b15471913d620b21350ab71e528483d7e84e01742b624f4 -size 53200 +oid sha256:af1e8fb046d261c1e7274cfd61033e1fef539b8f13af8b14045d36c237cf458c +size 52975 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png index 189864546..34dff8acb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f52d0ba314c14b776a0bbafc25f9ff654d3a752ee488a28afcc77479163f1bcc -size 63302 +oid sha256:49301d759419c2418fe628957e6dbd14702a0625d6307c2dcc1f4a2dc1d715ef +size 63378 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-en-GB.png index 043666383..abaaed0e5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19e1b0fda31b2c99460c1c6a07fc66327ef6fdeb16a293e586ae869abee3678a -size 92952 +oid sha256:f5a7b449241c47f37a05f16196e9f1478e861dba372cd740d8113471b4c64573 +size 92965 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-pseudo.png index 8af6b0c08..24c915836 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-no-accept-action-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1ae6e06d20c719e146ef21a53522c5ff3a0c2659d7e8bda052949178fd9ed2f -size 97437 +oid sha256:a8c2022369fe6c681b6645fcc87485a390a548743b03ff4125f8aa01ff50985f +size 97357 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-16-en-GB.png index 6aa471c6a..d5e34803b 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1342ed4f2ee66a40d7748995b738c8b0cda691ed48516c663c41f81b9a3d28af -size 49592 +oid sha256:75f23e3dd857927ff19e65481a429f0b066543d938b6418cd742b2462d038817 +size 49340 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-16-pseudo.png index 8a5c43a59..c115a454f 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0600f91feb163d9c6f34f2118c6ab78dc5a874daabac538dc9608f52fdbb5e32 -size 56556 +oid sha256:4c27af06d422419337c232ea0e67f23ae5efafc42d17986e56d141aa27ea71e4 +size 56198 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-en-GB.png index 162337031..3b6072b14 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d966aab8b650456203624c4952beedf3d4135d8ab608abfd791667103a21132 -size 109525 +oid sha256:1eca3d3966ed170902068948b0e06792f5a86a957bc5e9fa4ee12367db0ecfdc +size 110095 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-pseudo.png index 0032dfd03..1ff7265eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsBannerView.Single-Request-with-reason-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc77758c6999d62dee1cf424420b401813171898d33827df2be4344f2d7eeb48 -size 114276 +oid sha256:d3fbf972978286e7a63cbe2edbeb1c3af50ecb37752706307dc0b276a73d60fd +size 114871 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-16-en-GB.png index 626108a45..931fad9e3 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:983278b5d232d891f5b807a31aa43b39d964ebd89bade409abc7eb529e75e1d2 -size 65735 +oid sha256:e819430839323b67d25f477fe9de16caf0d4e3cdeb6950edcc105e6e1b95413a +size 65778 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-16-pseudo.png index c7e2b4735..9ac0f3989 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd10dbd7a3c7ce46836b9e7823871831edc8f06046b63628a1d300529f4deda5 -size 75196 +oid sha256:aff4b437d86ccd489cc49b675befcfb98660c4abfdca7d7e8a57d5f57877ce77 +size 75574 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-en-GB.png index e27e5eeb7..1f75cb956 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6401de0d5cd1dca71f95a16ef5ca292071d1c80672e8dfcf8ddee7497b12316 -size 93576 +oid sha256:2bf8ceaecb27a9a95a28510f32d66d81fd7758464b6cf53098326c1fb703eeac +size 89084 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-pseudo.png index 0a7a1c91e..2327d91bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9869d76b6bcd097e1dd40bba71a7d5eafc6e7d53c300efe7af3fd2d70d08bbe7 -size 104828 +oid sha256:0a4fe849884e453814c34734bd495f0ae3a864949580189f1cafd149041e31f3 +size 99213 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png index f96c87b8e..643739980 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ccbec0536bb265637240d1dc80a91c7ee9b7224dbbb1fa69d42db3d48622515 -size 51261 +oid sha256:e27b58eb8dccf90333f8954d3b2211b4407900842c7615a6e3c3529d4a73b2ec +size 47112 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png index aa945b1cc..46214b8bd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b63d3e2794888695b15e1c1e00e012552a8aa29100c590c54200cf0df9b44b4 -size 70209 +oid sha256:2e38322a9ca8360fcd657a9fe6f3051507e783fdbda1cd233a8079aed46f24be +size 65802 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-en-GB.png index 6495bc561..4dbb3c85a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e16e3f4313f100a0819b12c80c8f2b455ece9ecb25ebcb0b55baab8f05f87377 -size 96439 +oid sha256:b4dc959e6c019f9003117a2b73d24afc6adf6658191943e3cc37ebb40bafdb8e +size 91844 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-pseudo.png index 7a0d2993e..4df1ae78b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c750790b5b7e24937cdf2afda653b5e80662df2e518cd2b63103221ebe01ce1f -size 98792 +oid sha256:eb9e433455486db8cefd77745a2476976920467f8d69b9a7db7136e2008ff45a +size 93419 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png index 83d870120..a4edd3867 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e37a0ba3eaa2d3248d484a95ae1929635c967f8ff93bc37a4fe96cb547b1b7c7 -size 52415 +oid sha256:d8886445f7b3dadef3034ebebdf1b576accb6c3e03c210d5a0d48b94277bab2f +size 48439 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png index a756a3985..0f62d637a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04608e4050f3a46f4a536bccbfa10edc6ab7382e3a17827cc461c40a53e78de8 -size 62603 +oid sha256:70318f17da2bc91fbe0fda5514987b757167028e63eaba689980ce57e370e377 +size 57902 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-en-GB-0.png index 760c98057..707ee3181 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c9e52e080258d8d8fcd1b32073100fee78ef01c159b82997d550e021593dca9 -size 172930 +oid sha256:8ce2cdc908c67f09db7579db0b4c17f12bbfa130f95c3d44360149b2063c2593 +size 166433 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-pseudo-0.png index 08a6cf1f6..8ee745cc5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e2e3709ac6fb3c0e57a1e3a977b014e339ba4d88f98600b24a87043e1289a77 -size 179127 +oid sha256:a13169f8c6612ed06a657cb0b3d69be1eecd19ba1c96d4330a2cc222093d036f +size 171605 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png index 8a957c594..5966c2e6e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:895c8134e9d8f30e5b923cc35ff39d1554483032ce54c6ec4f79527e5c4a326d -size 111636 +oid sha256:afb8f3c7d89dfd83a3cb14c7dd986957b04125e054a302fca5900f2bd368fbb1 +size 105726 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png index c0a607eae..77f637a0a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cc6e73fae18162833a8673dd174a0c84ec89d0ca6b958b24da3a8195602bc93 -size 128448 +oid sha256:86f5289315b01053599c5661510e97b95da6871e45368e49a396d80cd2d6a588 +size 120549 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-en-GB-0.png index b2c014e61..254c96ade 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:020697b03115ea30780e9bd580bf66ab238084bdbf10ba88df4526e07f1c868e -size 90870 +oid sha256:107fa535dabbc926212284330e330fa32fda57cdfa49f78ab362e391687a51bd +size 92864 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-pseudo-0.png index aae170cdf..b7a6a24e2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b624f0ab4144569d449390c88bac210bfc04c98da60a3a75443b9530d5a071ef -size 93460 +oid sha256:324b43e1bb96ae41567d04344db3c426cebe24eec3ed9ee4d7132096be7c1d38 +size 95391 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png index 616a3aa79..fdd93d967 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d653bd6979ae84331f69ea514248c311d509e068e3f8cfaadd4b7f13c33ffec9 -size 44234 +oid sha256:51e6cc78433189395866212d8c3a2753c6faec779b8d78c4fb4d9740f0148974 +size 47245 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png index 81152160d..84ed71451 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73e1e8bf807e8d40f9946b000bac4d0d9c4c4c7eb9a27fcd073cc1e71e18babd -size 49998 +oid sha256:f6d7250be8cbdf29a98a61de3ac37929eb3ab3131486603eede913876511ba80 +size 53044 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png index 7874ef3ac..8a4d7cb96 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bde44061b4aaa4445a171cc4e11ff1c1a928af9cb17d8eb2fca3162772db9f7 -size 48477 +oid sha256:845f7d62abf84d40c8913befa23053423b1fa1c9b2d4a3f173e57e399181c6c3 +size 48439 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png index e6ad31a14..6229df2a7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Credentials-Entered-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d488335c7d0340c51fa050be2dd02bdf1cd4acbdeb4034665762146df98caac -size 55461 +oid sha256:b8a14e13a1687c5b1fdeb9a9149105cbf096ff17ff56e19f93bf77d3ba91202b +size 55382 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png index b36d25862..913b238c6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c822f66d0fecec370a4480e892dd05ab9a4e7f77128aca72398ccc0b5577dcdf -size 51552 +oid sha256:47ab21f12dbcdd0ffeb7da8aa0aaf3ed409e7d9f2255979f96a621e41a2206ba +size 51503 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png index a4d445b3e..1cdf5f4fd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a33ef7d6becb84995f9ad89084c60260e3887fda6bb6aea46569be281e0f1ee -size 59862 +oid sha256:650ebf41da7dc3c084144e00aa4aaf4837ca2ede976cdc5d4f7c6887ea921ac8 +size 59766 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png index 0580a24e3..46b4276d3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d06695be5ca29ec08c9ac574711a0badd045756b342e9b00311c18433212ea5b -size 55486 +oid sha256:7fa7597d52138691f3a05991b4b4720095d8bc2340a92c0890d8be0d7fae9a48 +size 55889 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png index a7a1cfc8e..565a62697 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e10c1f968fd5cf2357aa155cdc4bf4fcdbb0b364ddebbddbd6690fd0311f00ba -size 80079 +oid sha256:1d6e00a09a7b50b6ddd3c3f8948f7b883041118fb9bb9e2a0cb56c1dea6887f4 +size 80104 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-en-GB-0.png index 1500517ad..9c4408ac6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36982e2a41c8c0714a23cdb36f836ec8cbc27dd358199b903d09bedc9e755e63 -size 108470 +oid sha256:593446d01336ee435d6e1a10a7f85d6aeb2afa3aa2ad95aee372a52ee5f3d4ee +size 104555 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-pseudo-0.png index 6e1f6079b..9c4408ac6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:756efc0968edd70f952a17e3c9f1e14b74e44addc2d55936e904c004230a7604 -size 109189 +oid sha256:593446d01336ee435d6e1a10a7f85d6aeb2afa3aa2ad95aee372a52ee5f3d4ee +size 104555 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png index 8862c7c7f..32ac7b6cc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18af56a5cf5677afe99ffa7036616e72674a666fea70dfaeb7165dd06a915171 -size 67436 +oid sha256:f72493986d9022a120bde045d700644febdcfb90118e08c41e6f97f6b37d6809 +size 63987 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png index 492232cc0..32ac7b6cc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6fdbdf4826ecd355d0a85f664e7ebe0631124def0b64a708463aa25ce18e5ca -size 68095 +oid sha256:f72493986d9022a120bde045d700644febdcfb90118e08c41e6f97f6b37d6809 +size 63987 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-en-GB.png index 9d9442277..609d9fd9e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9de850c95f6dbdfad502994a33d0523226cebaa99f8e36564c5c30b3eade2237 -size 195361 +oid sha256:2cd53dd4c68239e6a51f86e5fad6220d8862cfb6e18476efc1e6267fc89367da +size 196475 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-pseudo.png index d96055dec..181b36eb6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba5ada0c14223f75f6f79112ce5b4741c8fc279289c7077e6b00a5d1545f823e -size 197461 +oid sha256:4e98f1e625582f36d36880cfc022d9fd65a786a36d5f0193898b1882809e5c4d +size 198489 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-16-en-GB.png index 7dc592c03..de0b5e053 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ef6e95930907faac60daa81166e91104dbe1821d79e847f8553ff7acaf5eda2 -size 135322 +oid sha256:533e1c3d32f9d8ee9d3f689bccc6ffe070dd1f07e627a927a190cd94c4112613 +size 137657 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-16-pseudo.png index 10f0c1575..b62103bb5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6b3cee316cfe4edf8fdaeac2fe0bf7d520b58f52138c504e3f55ebe3b68267c -size 140517 +oid sha256:c63fe9260783ba40bedcf7afce97986456eade769be42f26394b607e71d369aa +size 142667 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-en-GB.png index 00f17a84c..2c74254e6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:838a77d7faa429fb769012c1361ddb6ec96aef85fbd3cbf913fdb934e6ed639d -size 195727 +oid sha256:1aaf940175266c47d5323a0401ae0ad9224115f442ebfcb6f460ddfe1fdfd50b +size 196958 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-pseudo.png index a522d9b5c..f88c1587c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9708620c69e77bc74e461e5a1f5bf5bc843781fe124bfaf3eaa2b24ff8020c64 -size 197751 +oid sha256:1f5ac4b9b983f7efd2f8f70c3a7acca309a6018848492a69a54736ebce4cb412 +size 198963 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png index 79ecfa20d..88240754d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b36e8a40c54853a34366ba352736da206a6659ae9291bba3d9f338da44f26f0a -size 135362 +oid sha256:c4934543fd0ecfffc08d52212ecbb7cddf95f0fe08c0b8828f39aea4ea997db2 +size 138255 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png index 21b619f38..58f26f16c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1569bcd5c6e626315326b6275b6d069327af935ba9f8971aea27878be26beb8f -size 140550 +oid sha256:59cad6642a7fd2e95ba50ea3829597950aca017705bff033ba1caafb861eae7c +size 143366 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-en-GB.png index b51f5fa19..b6b4d3fcb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f6d2a023376318b8d75646ac54d71117cd94f5b5b679747a550f9145d450e11 -size 190338 +oid sha256:d9d357a82eea7676227d54dc28e6b9ec84845c07c69ce9e0e24810e8a8a46335 +size 190488 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-pseudo.png index 22f7b365d..6a3ae83d1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3053a7e72c09435efb95e99e6c5ade86c7aa2b186f37c2b3a23207113bd0740 -size 191560 +oid sha256:33005b9ca639c57dc591acb3eede4721e5428996ac585fd267a4fa34781d1e9a +size 191670 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png index 97286bda1..3bacaeb1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94273ef44799d1d926c96451b8c93f41a4262300691f3dc61b93997b8ff49c02 -size 129508 +oid sha256:1f67d0bc3d1407fe230c418d4d3fe492af4e8a4a7057d07124f8d259801328ae +size 131411 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png index c931d0ec5..04cedb777 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:034aba123a2109820e7d15627ba68826769032a2de2045be4ee0bbdf8e12d76c -size 131928 +oid sha256:76971f3684872cdbb73d7a04a8f7420bfa42ad3aa190ced0454a085cc1150a29 +size 133838 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-en-GB.png index 16fb5c16c..77c2f3f29 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a02e69172fc903b7efb96f4f9e9133a95b6c4db94004ca41b65f07279497e92 -size 189632 +oid sha256:552d0fddd4944914a7aeb2678cdb991d5f55599f8f09938ca10cc23f37de8967 +size 189773 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-pseudo.png index 94e44da29..2ed06e18e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e215c8f632a632fb1f09d98e98fef71fe8fcf94503492078e60a929f4cea6946 -size 191198 +oid sha256:3924218986ec682bee8422e60c1bb1fb66399bd86064284be5344b043d98eb17 +size 191334 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png index 19d2d4240..1d0ad2e9a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:680f38ab808dcfd019e0e925ef187033036ff26287cdc495c6242563ed0466fa -size 129401 +oid sha256:684526b282a46532d45dc048c806b1c5b81ed06fa3ec12496d5f0c2036c53192 +size 131331 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png index 8cca553eb..cc242df77 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d4cfc4fe5d65b69f8930427a54fc55b83aa3f38dc15978c61f79f12776387e2 -size 134646 +oid sha256:a930f53e5b4e44d1604e3d85553c521a0dd05841798a3673e9db1f3399deb540 +size 136489 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-en-GB.png index 7b8b5ef53..12c9b1e72 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28206d20d834c4c4804045b9d47e4c95aa6ca16c0168f8267d98c814e2795b15 -size 103571 +oid sha256:bba02f0b1a660e3a7b813fb36bf66afe00d3adee4c287651531ac5cf95863b9a +size 105278 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-pseudo.png index 18fe4f9b2..c4e4320c5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4a365e20cb2d85311a1db85f809e65ac0a46af5e9ae9eab7dcd6f31022724b4 -size 105093 +oid sha256:28fd222fc32ce2d1492a252a7701b4c0b0f2c2208d6335c384127ea48fae07cc +size 106737 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png index 9543beff4..25ad567f9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31eb3b34cd36134cfa8c787cc974c01d08eaeb53e8c67b4e023475ba9ead5c93 -size 54438 +oid sha256:7bd4668b039105fc66b51759be8f12581dbfba3d8012dc595e6a342dbc366b60 +size 56240 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png index 2071bc792..aa433addb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebd80833a565d8f865096dc772bd58ef81523e9e219ad600f06f3b5251ba4dfc -size 58583 +oid sha256:ecde6392d38af6a2eb2946c48c346e7a98ca716fbda654569c1bbb26a510e764 +size 60356 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-en-GB.png index ed9df022a..09a33856b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f24207cc87b8f35eaf0be741939d7518f86e065fd982e08962bb088187ade5a3 -size 531174 +oid sha256:68846bcc95b149e7c322da218d506ac15a841e84be70bcc2dcdc7160373e2c2a +size 547597 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-pseudo.png index 41a169523..68795410f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7027eda059a4f462690c1712c5a65539a95c065376a7c03a50b2b4a3fae21320 -size 547726 +oid sha256:ea37f158929c13203c74db1487e8e0b71a4d74efe12e7d3b61ef6d3ba6f554ac +size 551098 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png index 43a49b661..77711d357 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b6ea94319cb18d5785de8038af1eec2e0c8a4517b7854da768072ea393cf5b7 -size 341094 +oid sha256:7c78c0991fd79935685c30582a5f020d71d3f9ad209db5a98d834e738c53b6bd +size 340157 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png index 402d3d344..686c1e5e6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecfcfa2ebb6ebe66fae8bb35ab2b6cbbf984608c0df9c17da77d46ec609623bb -size 355755 +oid sha256:abb26a0ee5d832c3ef5dcd445ece5724668adf5f5dbfc33e63db077c528c6c0b +size 353915 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-en-GB.png index ab775a244..554e02e31 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b22f900e7f01932ed4496765925410071b353acb26b23418f75b63bdd117e870 -size 525956 +oid sha256:a2df23c1798df437f1506e276e0bedd54313c9a38abf986289138d7b779ee35c +size 527800 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-pseudo.png index 4c89888dc..f809658c2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67d030761a129b039731dd76ea6d5bddf03c3e9b4171562c3f6d6967cab8becf -size 540819 +oid sha256:acb4a361cbd5b730c7268609bfc333bda355726b64922cb7c450b1971d5a6935 +size 544013 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png index 9aa53da24..d59e4077b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46257ee5140acc94eb5f089a2005e3d59db993650910c1e790630fdb723be1a3 -size 338390 +oid sha256:6253c8fa95c67fb2ccd76caa79022971dcfacd94870b8f13c729e7c692c53cdb +size 337437 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png index 558466ead..8f6d2f45d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:518bc53d8fc2da6cefdf604b6e4f2519242c2504002114d282d7e9a2b28b22d5 -size 349972 +oid sha256:4497ed3fc4dcf03eb80d4dd35c2a7363e181e51a0bbc765b858766666bb5a81d +size 348442 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-en-GB.png index 95d25ac9a..e461d759c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2706041d0803d773bfebcbcf9b9f2d0b54d6dfb2fa7b61fb175f79d5de336a21 -size 152101 +oid sha256:75071eb534072ec77ecc5b1de2a5734fa8897b928879afb78715edd35045205e +size 79003 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-pseudo.png index 846cd1470..3d21b2f31 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfd3635e367e292e462a88c1ff7076200b9b89934c280063a7bba476c42f3010 -size 154388 +oid sha256:9beff0a1bf2dbb610f3da79b0fbc1601361464baacbd2ed364abbbb0141bae18 +size 79186 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png index c12b8a056..0cf17bb6b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e31c6b52cb690f0c77e0e4e0322537166fd3b5a71c35071e39b3509c7b5731a9 -size 90352 +oid sha256:482fc4aee7d5674a7b0ddd889c367d307a9be74f2cb19cb997e45dc3643b9ee9 +size 29542 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png index 1fb63547d..0cf17bb6b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18a41a4eef47023923598e1932ceed8749f8353e426ec07cac1c80cefcf6ad7b -size 92888 +oid sha256:482fc4aee7d5674a7b0ddd889c367d307a9be74f2cb19cb997e45dc3643b9ee9 +size 29542 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-en-GB.png index 3b6afa1d9..4068a35c3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbe4ff433d4a94d959a537da42ca979d585f880490af3d4050792b4091363d2c -size 748200 +oid sha256:b4ec9ca54abc63c4e35883e985f30af5b3b47e3a57023c8c8f7b563413fcc6b6 +size 735334 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-pseudo.png index d1854d3c7..dadaf4c2e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7732e4530a7d53bc79b482f7d331cae40a9e2382bd466aa3eb7f34b50dcbb7d2 -size 754800 +oid sha256:c873788490a0af53ff6f05e170f2188ccb6348312f9dc66b54e38db66799dd49 +size 741716 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png index 1ae99b6c9..0cf17bb6b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:430539338640c7e2c08ae62269749e4df7fd585e3c1a1e7c8f95c08bb6d79df1 -size 823013 +oid sha256:482fc4aee7d5674a7b0ddd889c367d307a9be74f2cb19cb997e45dc3643b9ee9 +size 29542 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png index 68d08c0cc..0cf17bb6b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67ff8c96214d870e15675cfcac26752ad24bd6d0fcfcc28bf77dfe3d3050d666 -size 828827 +oid sha256:482fc4aee7d5674a7b0ddd889c367d307a9be74f2cb19cb997e45dc3643b9ee9 +size 29542 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png index c454bc885..9929ecd53 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3339bf93cd5c4a6adc4648f758f16e458186ed79e4f795766dfab6de1c601285 -size 89495 +oid sha256:6fd11c9b30c5daef50844743783e2bc45f3cf1392b84f9fd73e4f75a95b9c8ed +size 90219 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png index b014546f7..dd4dd067c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b1cd2fa30211d98c0f8e4abcc798d5980c94d892af93c91a87b547568133008 -size 90526 +oid sha256:0a959cf3af1338a52879957c8b1bb5047807d22ab70b5e73922b41df59345932 +size 91271 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png index bd4efbd2e..aad8b8824 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d765faa6bb1075b91aae3e851e10d1f354c94892e792870e766e4166c0d07c48 -size 48357 +oid sha256:905dcb4978da9630055c40ba9b5a0186c3fe1a5b92460f3fc1fab273f60bb5cc +size 43584 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png index a61472680..8f1d06dbd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3be31d8e7bb3d41e64c78bc315de3750683e21d2f6cf52c8d4a0ad8a3727523 -size 49223 +oid sha256:7185a60c207517a7c804d577f285fa94311fdb206c30fd42910400a88f96d054 +size 44153 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-en-GB.png index 7e9be09c1..ea7e07dcf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5dee0c33b33df47adcd32a89d9158f2bc5fb0def3a94e9cc445286be5f92b954 -size 81934 +oid sha256:b310eadcbf82d6aebdb0d6247040f1f5cc11d32abd0184c32c78877bfad71317 +size 81964 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-pseudo.png index 870579f17..29b2d0768 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1104ec5d17a446b0fe5e6f4e4edc0dd20b29934428a43384e4e3d081339c4d1 -size 82355 +oid sha256:6173c45dfc60c1ab427c2bdb8d2cd297aa35789ea1efdfee552f3f06260289b3 +size 82265 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png index 3c0103ddc..be78f02a5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5e631e06bc81e4bc3c0bb2a8902defbf0ebba837b8e98780315e1ce75fdc7e6 -size 40991 +oid sha256:b70b60923c846d77745390dd1477d7b199ddfc28a83791e06a380d6015f5531f +size 40941 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png index fc3593ebd..5e15df6d5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.All-users-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da42d2eb81d6c031262c837f80bedce87b2f19b6da9733b18d58c63671e650a9 -size 42526 +oid sha256:10008cd7bd487424ab5bf956a8ab5a92d38018cdf877be0b09b538d60a0b9f56 +size 42469 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-en-GB.png index 65e39458c..69fb1a0a0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4d9e70940d588b07861ad1439dae36303e298b020602e0f912c3cdd6a245fac -size 82208 +oid sha256:558afd8132bd34df4f57320c9c05303b2cdfcab90fc700df18b4f35932496337 +size 82090 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-pseudo.png index 65e39458c..69fb1a0a0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4d9e70940d588b07861ad1439dae36303e298b020602e0f912c3cdd6a245fac -size 82208 +oid sha256:558afd8132bd34df4f57320c9c05303b2cdfcab90fc700df18b4f35932496337 +size 82090 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png index 35909286b..561a8887c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:098f483b0d38058c35128d0afc97984fd4ce8279bcc3be9f45accb709a0f5641 -size 41394 +oid sha256:c6d4d7227bfc765de517af2d40d2f51e67a2fcfc6690b0e8497e86e290707fb6 +size 41326 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png index 35909286b..561a8887c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:098f483b0d38058c35128d0afc97984fd4ce8279bcc3be9f45accb709a0f5641 -size 41394 +oid sha256:c6d4d7227bfc765de517af2d40d2f51e67a2fcfc6690b0e8497e86e290707fb6 +size 41326 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-en-GB.png index a54e45d13..763373cd6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93f6df4cc2696c52277e82d3775d42a15b7c543617097b8a324ebb948bcdab69 -size 81866 +oid sha256:e21dc8dda83d8eeabeaf2633e13078898dbaddbff7e863c540767060b0e72226 +size 81860 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-pseudo.png index a54e45d13..763373cd6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93f6df4cc2696c52277e82d3775d42a15b7c543617097b8a324ebb948bcdab69 -size 81866 +oid sha256:e21dc8dda83d8eeabeaf2633e13078898dbaddbff7e863c540767060b0e72226 +size 81860 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png index d90755986..b39a3dc68 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c35ca4a7c572ba25ff4ed46ce8d198c5cce094949d266b9744b7d0f6747eb6e4 -size 41002 +oid sha256:ba4c392ea617de54e574bafdca62018012a828101d920e9ea8f3356bb354e322 +size 40989 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png index d90755986..b39a3dc68 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mentionSuggestionItemView.User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c35ca4a7c572ba25ff4ed46ce8d198c5cce094949d266b9744b7d0f6747eb6e4 -size 41002 +oid sha256:ba4c392ea617de54e574bafdca62018012a828101d920e9ea8f3356bb354e322 +size 40989 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-en-GB.png index 0a3c17a4e..b024f4d2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0e002656c52a775cc5b576fb71e70c032f132072ce4e9886f96cb82143a3bb3 -size 209527 +oid sha256:7f4a59dc601b2272595612cc15929689e4d908e3443e6354e549dcd22d94d51d +size 209057 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-pseudo.png index 434a10477..305677c17 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da5f066472285215d2ce3feb1e47e66437569f960eff9fa403653e4c806a296a -size 212824 +oid sha256:b1b4bb1ac2b44f08067e8e290c469572e9d778d8d7d900d1572b19f884b9a5d5 +size 212362 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png index 3cbb68f8b..ed4062f2c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f07f257a6bf04bdeffe42e9aed2bbfab4f4c0ddf6a751a71717d64bef16de10a -size 147108 +oid sha256:98f071a43f4d4b0ed53abaedd96ebc5713485aaff4cfdc06fc71165934a93313 +size 146556 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png index a940e0963..8ae1a312d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cde336b150823855a1a15025d49ff104b5032914f903232686775d2ead3f546 -size 150415 +oid sha256:2dd55299a8dd12aaaa833f73f8986a5b0c970cf38d7936c396162fe8bfebc298 +size 149858 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-en-GB.png index 1d06ce5af..fe311aa05 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22dbb41a0f6e95d3d50cdcee4e17ae3d8dfed2f8a8260ebc0242eb27825c32ff -size 216722 +oid sha256:b438428319dc35cd36119e2f1268ad4e7233d5944784ee79a40d72529b8ed7ea +size 216228 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-pseudo.png index c1c7592b1..1f5866bb7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:834db2da4915bb82598d0ecd17c22af8b3bbf19d1700620d56079671e5172c8b -size 222709 +oid sha256:f236a885a1f4eff5d8897910c22be6ccea17f36c9e5370816681eb84d3cec471 +size 222241 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-16-en-GB.png index 64639c2bf..19e2c8525 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd4b4d06a72783f58ac61a75ab7c69050145881e79d5cefb2e67bf31b5951c0b -size 153309 +oid sha256:3162a5a49b5fcd25ac7880ecd7837ef7c1efa3599d1b1fa0065dbd43b645dcaf +size 152742 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-16-pseudo.png index c7edb05f1..cc500da70 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-in-thread-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cf1b8031bbf5e9c3a1f47eccf9354ecfc153a8b64471273ba3ceca4ad5e3eda -size 159244 +oid sha256:7e5bd2e69da096c9c913fc90507afedb23e4dd7b61c4c1ac360da8cb9f442080 +size 158688 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-en-GB-0.png index b695a7d7c..d5705e78f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8070b141426f12f70536ec19130566f1d33b4a8e163f60696bab457c806076d -size 169986 +oid sha256:065a71e4ad09944ebe193fd5b1a519f572cda5b25d66524e8c704b31304b4740 +size 78652 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-pseudo-0.png index 0585b4af8..4009509aa 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:515b38dd917617cd93d3db645bb4e5a187da6d2057a1e8ffac98b58df9e67500 -size 171882 +oid sha256:c46805e7eb92aa92dea754918662d109ee34f6115a562a6ab3badb1749da2cba +size 79300 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png index c468cfa61..74341f0be 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9b027ff00710c620f8fe31d278d5ba6b65820d3463686327f6fe9c63c9e8623 -size 116692 +oid sha256:231b6c7ed8ee84f33f85f2a452a140477e88383a7df2d96befc412130ff57637 +size 119863 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png index f9e625abe..74fe59410 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37a1f360bc89ee6025f7f91cdb88ada5d5dcace0ae4001001b64ff47ccb91d4f -size 116551 +oid sha256:8a21b1c7d9a80628b8abf9d0cc437c410c3c5158f6dbfa5334a53095d28e8e54 +size 117518 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-en-GB.png index 6cd9fc29e..6247a84eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efe3a163270b708fada60d439d66ae82792fe59ef2a2e6bbaa19f264968e56f1 -size 72035 +oid sha256:f359f74ed03cef9427be182ea8a0f975c08a09f13576ff5e69f7c6c9870bccdd +size 72037 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-pseudo.png index 6cd9fc29e..6247a84eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efe3a163270b708fada60d439d66ae82792fe59ef2a2e6bbaa19f264968e56f1 -size 72035 +oid sha256:f359f74ed03cef9427be182ea8a0f975c08a09f13576ff5e69f7c6c9870bccdd +size 72037 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png index 643c0f0e9..35ed032f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8a1b232998033c6b57f309ae3270216a528a9c6b40243cd00500f867b7d3b38 -size 31526 +oid sha256:43a201a3a985cf405477e64e2f2aa916c86d75fade57218ecdb6946cebf2cc63 +size 31532 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png index 643c0f0e9..35ed032f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Attachment-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8a1b232998033c6b57f309ae3270216a528a9c6b40243cd00500f867b7d3b38 -size 31526 +oid sha256:43a201a3a985cf405477e64e2f2aa916c86d75fade57218ecdb6946cebf2cc63 +size 31532 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-en-GB.png index c7ffef45c..e381a6397 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:246ccf3dab763371a54430473e36629b65b74b66134c3ac547d2a3499dbc193a -size 75057 +oid sha256:fa6fb822aee5a8530ab28187ebfe1273fbdf18b2f328a57c0a910ea6f7fe2659 +size 75059 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-pseudo.png index c7ffef45c..e381a6397 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:246ccf3dab763371a54430473e36629b65b74b66134c3ac547d2a3499dbc193a -size 75057 +oid sha256:fa6fb822aee5a8530ab28187ebfe1273fbdf18b2f328a57c0a910ea6f7fe2659 +size 75059 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png index 761b51b2f..b2d803037 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c42a0011099843cc8a21a05511b8c1cf174c0f3a19c32bc5521c167a9d3fae32 -size 42627 +oid sha256:d44c0d03088e1842d4dfcbc815f83ec0e9e05214692b86719102f13b0059412c +size 42633 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png index 761b51b2f..b2d803037 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c42a0011099843cc8a21a05511b8c1cf174c0f3a19c32bc5521c167a9d3fae32 -size 42627 +oid sha256:d44c0d03088e1842d4dfcbc815f83ec0e9e05214692b86719102f13b0059412c +size 42633 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-en-GB.png index e62783d73..501b0de53 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51c983cbadb2a9e25cb4528abda91e77ae6540dd15347e3e475371f2f5ea7ef1 -size 75057 +oid sha256:44770fd68bdf2a338090fbac040231224e9c1b0483313fc71ff5a28e9facf5af +size 75059 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-pseudo.png index e62783d73..501b0de53 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51c983cbadb2a9e25cb4528abda91e77ae6540dd15347e3e475371f2f5ea7ef1 -size 75057 +oid sha256:44770fd68bdf2a338090fbac040231224e9c1b0483313fc71ff5a28e9facf5af +size 75059 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-16-en-GB.png index 806ee3ca5..7782c5ee7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbcaead45dbd525d19def5b2abe72604865aab22b5d1ae436c41a7868e6085cc -size 42698 +oid sha256:fbb73efdc719fd28a75be4315989688ee6bf3dafbb45777e4baa778c6808a976 +size 42703 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-16-pseudo.png index 806ee3ca5..7782c5ee7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.SwiftUI-Default-Text-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbcaead45dbd525d19def5b2abe72604865aab22b5d1ae436c41a7868e6085cc -size 42698 +oid sha256:fbb73efdc719fd28a75be4315989688ee6bf3dafbb45777e4baa778c6808a976 +size 42703 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-en-GB.png index cc23204d4..dcf4a215d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:758cb2a11e32499693cf9b1d3ce4652769d402b89543c823d2c944a363d499fe -size 92951 +oid sha256:83e83ce7a475533aa8d6a21a8f22214befbee1e0b243769d805fe9864cd8cfc3 +size 92953 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-pseudo.png index cc23204d4..dcf4a215d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:758cb2a11e32499693cf9b1d3ce4652769d402b89543c823d2c944a363d499fe -size 92951 +oid sha256:83e83ce7a475533aa8d6a21a8f22214befbee1e0b243769d805fe9864cd8cfc3 +size 92953 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-16-en-GB.png index 328185780..68ea5f584 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84731eed2f5233bfc1d50b1978701b3a66326fa0fa1d8afac53d8724cfcb78f3 -size 54665 +oid sha256:bb099d679ecdbf0da3ad1315b6ceb575cb26f4e384188d0004e02fb158ea5a5c +size 54667 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-16-pseudo.png index 328185780..68ea5f584 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84731eed2f5233bfc1d50b1978701b3a66326fa0fa1d8afac53d8724cfcb78f3 -size 54665 +oid sha256:bb099d679ecdbf0da3ad1315b6ceb575cb26f4e384188d0004e02fb158ea5a5c +size 54667 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-en-GB.png index face1940a..4ed0374b8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdf72759297ba0bd010c6ef0379db71ba710397cb0f660bc87e72433453b54f9 -size 79542 +oid sha256:0d1d169df4b4a27176ab35f5429d88f0721bf1e1338814793372d3418309321c +size 79543 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-pseudo.png index face1940a..4ed0374b8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdf72759297ba0bd010c6ef0379db71ba710397cb0f660bc87e72433453b54f9 -size 79542 +oid sha256:0d1d169df4b4a27176ab35f5429d88f0721bf1e1338814793372d3418309321c +size 79543 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png index 163ad2707..ddf6455c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91d608f5ded05640756d74ea89883689f193eae05217a4d5ae1444108169d805 +oid sha256:075244b8ef56183af56b33ad34ac0a8280df4991b181fb598a89860bc692ebb1 size 38950 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png index 163ad2707..ddf6455c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91d608f5ded05640756d74ea89883689f193eae05217a4d5ae1444108169d805 +oid sha256:075244b8ef56183af56b33ad34ac0a8280df4991b181fb598a89860bc692ebb1 size 38950 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-en-GB.png index 39febd42d..e78acf8c5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac2cc1c173a83b76f72c577d82d0350f084bd267de7ee93d9441bfad765970a0 -size 104409 +oid sha256:33f65ae1dedf6de314a24fc245d6c8bb4b7ecd70b60f81864c336c98d7ab757a +size 103913 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-pseudo.png index 3af62aec7..7d6944f70 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4073a76cb5778203b931d99eaa99cb70868435bad3d7a73d2ece51db555d1039 -size 119055 +oid sha256:7258d7bc592c751c81857973231bc814b5447d851a68e81fe795471f8f9cabed +size 118095 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png index 76986d3ae..0240d3fb3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16e88c00d6cd8e118ecf01d93ee5e45198c0f2d6ae638f40fcfae060fce940e2 -size 57641 +oid sha256:4984daaf4a3e041608798cc808de9011854cfa60411186925323d4fbc58e4e2e +size 59288 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png index 56dccda64..0f9128733 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6de37d855e923514ca7ab5ee9096385a1f0957d3eb1b32a7b70ad8cc3a0f0b44 -size 79925 +oid sha256:3bf3571501f2d559be855c80e08aa41ded9f40c89ecc3bbccbe2ee77c2885ec3 +size 79790 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-en-GB.png index d293efdf0..9316d5e0b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fa29393b159798be6bd1e393630d4b8e8d1db576d93fe58dd19a28475f2717d -size 104565 +oid sha256:8cb89491bfc83408f20bed583726612dea2fa8391f33441dc107f7088e2e2927 +size 104055 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-pseudo.png index 4f24a4238..940ba586a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd5fd19a237031cc08594bd8cb749a569bdd9163121dc2d772822b83d601ac7a -size 119768 +oid sha256:cacb5df9351feccaa8367c9638dd4f1e0046b755a149cdd1b38983720a19cd29 +size 118772 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png index ab15059f2..ed211c97b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c4edbc8adea7b72ed02964797fdb951a954dccf55dc2a38859c6902c50deec7 -size 58074 +oid sha256:b9c58eb20bd959a033193b9001ba662df2bd63674ce9dee8379216ca89164a41 +size 59981 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png index a3bca2562..0ddb60934 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0fc58bf9cff2682068377e517d7675ddae8ece70a9e5916ff81a318337907298 -size 80245 +oid sha256:54feace80b3d90cf4eb55e7e3093c38216e1444d8b9d31897d46c9dec1583072 +size 80571 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-en-GB.png index 049c29b98..cd6445ff5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb4d3cbe42527a615acf7317ae312e0dd3c663a5fc31fc5fec27acbbfa28f13b -size 104287 +oid sha256:ae6f642342c6bac5563647ca0db7afa66c5d03c1be2e871c319a36d4b89c4942 +size 104475 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-pseudo.png index 3531c254b..4ae0490dd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0892db49f3c8e8ace2ade78265c3ada5271cc86620871454bd6095945e6806d6 -size 117008 +oid sha256:60d1b400c1b460abc74c8bccc9c577d06d0943442df368092aca49d77dfd93ca +size 120156 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-16-en-GB.png index b722d572f..4397931ed 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7624ffad513bca273d1ea47cf5bd9ff1d90683b381a8ffc3e8a069b3b572374e -size 58407 +oid sha256:c4330fd605ce3b4b1addb8cbc02f9ab7c84f501e2d38ef70e080fddf21fcff6d +size 59749 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-16-pseudo.png index 249a25ac3..ccee7d571 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73f608db317d3fb3711450bb1f11bdaef2dfd59bd35a3f8d11c279011d2feb12 -size 80601 +oid sha256:5fb5449b30fc78173bd29e01a7e3c4eb5d4ee6867b682520ed27a57848c50445 +size 80569 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-en-GB.png index 049c29b98..cd6445ff5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb4d3cbe42527a615acf7317ae312e0dd3c663a5fc31fc5fec27acbbfa28f13b -size 104287 +oid sha256:ae6f642342c6bac5563647ca0db7afa66c5d03c1be2e871c319a36d4b89c4942 +size 104475 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-pseudo.png index 3531c254b..4ae0490dd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0892db49f3c8e8ace2ade78265c3ada5271cc86620871454bd6095945e6806d6 -size 117008 +oid sha256:60d1b400c1b460abc74c8bccc9c577d06d0943442df368092aca49d77dfd93ca +size 120156 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png index b722d572f..4397931ed 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7624ffad513bca273d1ea47cf5bd9ff1d90683b381a8ffc3e8a069b3b572374e -size 58407 +oid sha256:c4330fd605ce3b4b1addb8cbc02f9ab7c84f501e2d38ef70e080fddf21fcff6d +size 59749 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png index 249a25ac3..ccee7d571 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73f608db317d3fb3711450bb1f11bdaef2dfd59bd35a3f8d11c279011d2feb12 -size 80601 +oid sha256:5fb5449b30fc78173bd29e01a7e3c4eb5d4ee6867b682520ed27a57848c50445 +size 80569 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-en-GB-0.png index 9e330d2f9..057885fd9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e902bdfcd9a475267b1eefda4833c3d94fcc250cdfa7460b7c1c53ba1cacf4ff -size 130244 +oid sha256:1675a915c2da6236461637afd626266278552d23a94e2411a6dae2ce03d39d91 +size 130096 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-pseudo-0.png index 9e330d2f9..057885fd9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e902bdfcd9a475267b1eefda4833c3d94fcc250cdfa7460b7c1c53ba1cacf4ff -size 130244 +oid sha256:1675a915c2da6236461637afd626266278552d23a94e2411a6dae2ce03d39d91 +size 130096 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png index acf87035c..d34231631 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efd42154d6ed807c7de34d79bafcfc25767796aa6d9ce31a346d0bd39cf87db2 -size 86366 +oid sha256:45e964694a1d42dc5b840443c84b1928c293950033290932cdbdc8a7d9cdd604 +size 86200 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png index acf87035c..d34231631 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efd42154d6ed807c7de34d79bafcfc25767796aa6d9ce31a346d0bd39cf87db2 -size 86366 +oid sha256:45e964694a1d42dc5b840443c84b1928c293950033290932cdbdc8a7d9cdd604 +size 86200 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-en-GB.png index f630cfd3c..eb5777760 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aeb8e86177906f0839e3408f9ecd481735413b5abbd4af4391e09b8a2e89f7fc -size 117372 +oid sha256:8fb0e7ce1ff8a84481feb830edbdaff4f03261ced08b76d368c2dfaf3c3e6a4c +size 119441 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-pseudo.png index 4fb32cb74..f55bbd378 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4ca4dfbba75071e5d8de0e0c6f2869fbceeeee3faf03a86bc590d027424192b -size 145318 +oid sha256:ab00034388e7b267ec05d4f92affa1c678be0883b068471e0d212ec452458fd6 +size 147829 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png index 16aff4684..6ea738737 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e6f03c20e7b9f8f0afbd33de535b7b4e1284c9da1f2a2050b92037f1760fd78 -size 72028 +oid sha256:f73e6f6aaf0676fb47c563f03c9f46c3be3e2d030bdcd9fb7bed608438efa33e +size 74476 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png index 1b88e088c..7d6e1969e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf3aa18c740290200b375c20c3c1aabff8625e23654ae568212e7015476cf456 -size 109170 +oid sha256:96c7b89b9077f500f8463877d9fac59b60b25f4245cc279c029c5fb46a1794de +size 112654 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-en-GB-0.png index 53d9437e8..86d2c84e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04a039144c38ee6a54b2a67fc8a6a4759b31767eaea9d210adb2b4ee118693e3 -size 146058 +oid sha256:283c7366f9da01afcb5266d0eae0ddac966acffd523aa4308a0687a4baad2e41 +size 144236 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-pseudo-0.png index 42d6d29dc..6da4d3a47 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7acd49824cffe16d29167614c3f91a01572567d405e65cb478b1b2025bcc44bc -size 165008 +oid sha256:788585e7db7b44cba2a40abcf0bd2ec110e482507c5f352fbc71714fe860e042 +size 164900 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png index 6159caa6a..a4e2ad933 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:773528462e21578b18913b3696f8614d8679645fb62c92f2344b5852ba9638a3 -size 92329 +oid sha256:a0c148befdd1ea80a7c937c64afd8841dd3a360907bca8978d0f5dc3887c964d +size 92032 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png index 4fc0a1cc0..6bbd17e8b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/notificationSettingsScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f31ea41a2793dcc67ae3dfd3c54014bd9bc15352fe0e2c8742cf62435be45ed -size 126574 +oid sha256:0d6f31e790f69a0dba05ee24ed8eb67254d14f9726ef6c13634bcfc47cf3654c +size 128311 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-en-GB-0.png index 99da4029b..22b5d892e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c58b8daa0378a32b6e1e062333838c6395e52bfb1c95f788457965d23e83281 -size 108232 +oid sha256:91fc74109438adee01e326cda59475b1af4f53ae0aa7307decc7d76eb08876b5 +size 111070 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-pseudo-0.png index 99da4029b..2e4234c1f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c58b8daa0378a32b6e1e062333838c6395e52bfb1c95f788457965d23e83281 -size 108232 +oid sha256:bac3f26a9ef14437c4f87f794d86071ad32c8d47fc9f472d5d1b221083ccb19c +size 113177 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png index 066b0ac8d..46b9ab916 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c79d044092ae68911550f15ae135d79bf5536a5f7b397a4b7f1fbe4e45e762c -size 65452 +oid sha256:f7f1d866c2390884698f0c8f851217eebcda5309e623701fb401614457b1c97b +size 67660 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png index 066b0ac8d..dcdd3add0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c79d044092ae68911550f15ae135d79bf5536a5f7b397a4b7f1fbe4e45e762c -size 65452 +oid sha256:44ddb2914aa9c6adde3989e80a91131709c02fdd2cd34a8f99a74e7fc3285cb4 +size 69407 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-en-GB.png index a9a238a53..b693080e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:779fbc896e06aaabcbd630fbc37b1b7ca7c4b5d24aca5013e7cdaf2f5c7affb3 -size 96245 +oid sha256:09df9a0b018e22a4a4def08f700279ebdec3479ff958a002e8c023520e2233a0 +size 91985 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-pseudo.png index be5dba08b..e4f3426f9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c122f1df55e7944efe4a14d3540fce1298e4ce1aa7578840c211cdaa4572f1a -size 112566 +oid sha256:da2101c3525d2dd8b16db87822284b2f95417ce9ef1c2b63afd3565259c3bac3 +size 107205 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png index da57ca1be..d5879549c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c41242a8fc2df8bf2ee6be525f2d9247e9f4333193098006cd768f2f6d44fa09 -size 56386 +oid sha256:c4b838ffe7c7394b348f6138e7fd6a88e7041c74f876e57d47d1eebe97728d6e +size 50085 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png index 139df2a7b..36d1bb87c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f01f3a67d066a9b4f53a2f11575e7ee73207c954b4d07557743b2da84cd05253 -size 76063 +oid sha256:35cc630f5fa176e68adb488fb0fe92f4e5d7ec4ffae7a10c465fdfc022700d8e +size 69664 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-en-GB-0.png index 8c0cf82f2..50855d4a5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5dbc88af2f67b1a0045bf4baa88979712528ba344ddb6d5c5c151027d9ed4aab -size 140712 +oid sha256:f727d2737e536d158ec5488ef7ae670bdf17b4f10789f560340b3c7b36cb2c76 +size 143061 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-pseudo-0.png index b3ab4cdc5..4d41509e4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e9f9b0b1077fd5276ca0715876e542d42b6ddf1c4a149992a97d18309fefce2 -size 168711 +oid sha256:784b2e39ddcd2c1c04669c1e9dd00dddb9388b738afa283732bf389304d7b398 +size 170747 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png index 8f2e832f0..7f05e0169 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be82e5c7f7f347e1e4261bcc6b3747f79818995b07590257d20566acf17cffcd -size 85868 +oid sha256:79abbb9b6c53da934a3451ed8d61d89c441500a5f6986e07c8fc9c32784afab6 +size 87380 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png index f3898d381..bc6d21cca 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a33ca698a5e0d2e5202db3790683c209893515f90d337d2de4ad21b03fd178c1 -size 100337 +oid sha256:e196ada8c3f0f808868a80330e7a389d658519903cb51680d27ddfa4bd33ea60 +size 101585 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-en-GB.png index 8f238ee1d..f37f26db5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82f598c32db0e73ec5a4b575cb216c824b734f48d761bbb61bc40539dfd3be0e -size 214682 +oid sha256:07c479466ee14baef3fe8dede92376e17898c2fc9b38d5736e8beb61bca63d89 +size 199506 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-pseudo.png index 8f238ee1d..f37f26db5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82f598c32db0e73ec5a4b575cb216c824b734f48d761bbb61bc40539dfd3be0e -size 214682 +oid sha256:07c479466ee14baef3fe8dede92376e17898c2fc9b38d5736e8beb61bca63d89 +size 199506 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png index c6c657b57..659f19ba8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d7e551b2dfbec476b1164b49c8b800ab88f2fb3bf0e204f7fae38323ede91b4 -size 17360 +oid sha256:6b649e830e7ab43a1b8828a83886f65904e4efe808d07edc92aaf1b10fb2c065 +size 17355 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png index c6c657b57..659f19ba8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Split-View-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d7e551b2dfbec476b1164b49c8b800ab88f2fb3bf0e204f7fae38323ede91b4 -size 17360 +oid sha256:6b649e830e7ab43a1b8828a83886f65904e4efe808d07edc92aaf1b10fb2c065 +size 17355 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-en-GB.png index 8aff96102..64fc92bc7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8b3c7bef372d17793e3418e76af0b4532079cbf2ddb405abfcb9861a4a943f6 -size 126606 +oid sha256:68b318d0b55c29d3c962c880148b2753acf146730e237515d438aeeb8fbee07d +size 129971 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-pseudo.png index 2d01e1240..586e45629 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb9d706b66b2c63784e434b86f93e60e005e27965a4caff8ff1bbae1dcbe0e14 -size 132825 +oid sha256:1cfe7601cb65a41ea3e47ed632c0368ac706ad022543596401eadeee02e831cf +size 136970 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png index 6b7e55aa1..9da67581e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75edde867bdf7993b76f0d42527c30bbee6e860752ccc3cc6eb697658105c7db -size 76334 +oid sha256:bb1686f65278fd5252c6d639cf993fd8f2ef273b4f5dc13737ecf793fee9aeda +size 77256 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png index 48c0cf777..29f79ccbf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b336a45136ad087539f5cd48160fc73f5ba2bdd8ec32893d2ba0eabac22052f9 -size 88052 +oid sha256:3ccf9a58b05e9b428bb51ce0ba2a2417959ae2c00be60e75d560e114a8630238 +size 88158 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-en-GB.png index 54ac2420c..8dd8ac0f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cad299415956ed436e1640bc4483c9c68df7e4896cc6504c7da900b6e36692f -size 128852 +oid sha256:bdd18269f560b3da0b778df5ff7ed214f968469c819aca549c27ec64d5173a4c +size 131018 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-pseudo.png index c0b180c86..66f344303 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a861bddb7bb7ff66e915c81d264f12c708a967426f72867afe6902d7c4456ead -size 139457 +oid sha256:b5b42937c75c90bd52aab390074f8a19ec77e84440eb3cbbe99e46fb175d804c +size 142674 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png index 00d35a1d1..5b62d455a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21b97b5d0852b1dbe372304b5375fbcb0e036c8c5f8279464919248498899621 -size 77230 +oid sha256:540ca87503c303c25b44b2d51e75c3a5af16245975db23c284b351536dd72d0b +size 76145 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png index 87c721f2e..12e91c448 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2f11cdd4e134b5450d4afd34257b4c55ab10a39620e35caa8530f927393b1aa -size 93688 +oid sha256:c30a21b182448a8970185710b1796f10fa90250832a9735bde4f20a467a93205 +size 89528 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-16-pseudo.png index 8aaed6229..3db97926d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cf386d5bd0ae95a9a4f082cf92c6c1b60f7b01fab14655688f893741e03a31f -size 87226 +oid sha256:774862f839ce6da32d768cd669aa37ec42ad4f7e991886d0a19ca678392a04a3 +size 87282 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-16-pseudo.png index 8aaed6229..3db97926d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cf386d5bd0ae95a9a4f082cf92c6c1b60f7b01fab14655688f893741e03a31f -size 87226 +oid sha256:774862f839ce6da32d768cd669aa37ec42ad4f7e991886d0a19ca678392a04a3 +size 87282 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-en-GB.png index f0e02e434..1cce3930e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8423b3e6e027d5d499f3f4c08d93be1f05ed713e20d64d90220510b974e66a3 -size 100521 +oid sha256:6ad6008a604884316d6b6cb1b3247e25b6033a87cf5c366ee1238d2ad7336fd0 +size 100428 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-pseudo.png index 5e6e7ae5b..a2311661f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04152eb867ee1aef766fb7032e977bd3718ffe4c96fa8ec850d7f2d8563fd6bc -size 109897 +oid sha256:b10951db78fdd0c357dadd6017b96c93699f143580d4b0221fe484f7549f8731 +size 109691 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png index 2a672ce10..d04513222 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5f3975d514b4b14a42edb18f87cf8c3166c7b63b4b29683e7bdbcab293c29d1 -size 53953 +oid sha256:1a279a6116971ff15d0a7889fb508d2e31bfea4db3be2498438c1ccd7b8a7c42 +size 53912 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png index 7329a8148..43edb0956 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93a7e58c47025011f54cd7566b1b7a68bad4518f38cee0f0b5d0de33690a4638 -size 67634 +oid sha256:d48d9ce53a65718cd23497694732539573e9b6f63a735660589812ebf123504f +size 67601 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-en-GB.png index 862be16d4..2fa5bee93 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a52f6f440786391b32d00f27c79f76dee9b644f53fc62e6b74627cf45a0ffb9f -size 105322 +oid sha256:01c2dba5192d399f55b800589ce16a5c7c22147c7b2bb17cfa14adb99e94bd3f +size 105413 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-pseudo.png index fdab3078a..d1de2bd2b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59cee3c80f66ff970daa28f320621fbf0d0d269fb94fe1cf6f58efddf32d3e1c -size 109346 +oid sha256:45080e4f5a0787b6d6de88b79ec23712cb9428cbb2d2a449802132c033f0b3ce +size 109337 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png index da746e7dc..20935d6b3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26dd16e4b0f6bd9578a36d3664e28e59ea5ca95c0551a7e53aaabec14818a3a3 -size 48970 +oid sha256:4401427eff30d7291a95986c40f43440b3d5a2da1411c7e0fa9eab9836b7c94d +size 46380 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png index 0657b3f68..a1bcc1334 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb7f6ce32d3713f55bd94f619914d144e97c681033a79b54cd24735fc9d1cf8e -size 57117 +oid sha256:7c3cbae1a2c8142a1269bb8a2505cd3e30379120fe9ac670ff47689cc974c909 +size 54385 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-en-GB.png index 95b975654..e2473987c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea5bbc14015032dc5d618f1e6afb6bdb6f2c4dba2a840400b272ca86ca981f0a -size 160096 +oid sha256:c77a5913eef3284747ae50aeb2252ffbae01484f960283a0986de3648946b9ec +size 160330 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-pseudo.png index 67a271bed..c70f55ff3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d120fba9267a9e898155414a9ba57157a6a9dacd1d1d0624fbfd134426186731 -size 213035 +oid sha256:e9ce41587137a7138ec026ee37be14255a1791a80b8061598b2cf5c854c74739 +size 213100 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-16-en-GB.png index 5494aae1b..ab571acb5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a3a512820bb67c92161d5a7c8a1002b498877b330d5392faac3dd04794f8681 -size 107760 +oid sha256:2d173a380e7d7d3c0b4831c922c3bf8a34f90ed1a09ec13b318924d17f2119a4 +size 108449 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-16-pseudo.png index 24918b018..60829b644 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Connection-not-secure-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c9e36f73434390a37e271daa3364c6147bc6dec6ce8c18fbf1ac708cc4275a7 -size 168132 +oid sha256:11be86f9d30026c10851dad887ccebbcbf3747dd4e719a6d3cd2c3e7a54793e0 +size 163399 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-en-GB.png index 48f6b7d12..7059e450b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91b1af31e44340d57cd9a37f98a3b98b0288d3d725daf9ba51b8053b0d2c2da2 -size 98450 +oid sha256:17a79d824b61f169e74a8b8a687a863ea58720a48b8ae0092847f43325ae6efd +size 98395 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-pseudo.png index 780813688..32e7c51eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:214d5daf3ac74c66101b07cb773c0fcf38c5708337149e801ff94e3091d06bcb -size 104737 +oid sha256:69d9ada1c31055265d0d2e1a13af50a4cecf0e88df5799992947443b93ee3d20 +size 104670 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png index 789a07b21..af6544fa3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ef6b9fa4d239a2d00dc070f2ae0acf3639768cc4b45b1b36efc69665b5907d2 -size 49916 +oid sha256:83eea65ebf7ce67b8cb7713810bc6940d66c433e3e9db3ed04b1d886ee74b94a +size 49876 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png index 487ceefea..4bace8810 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c780c788f723784ca10aedfb9d8d49946f9ae696902bfd83dc9c38f1ae75050 -size 59537 +oid sha256:b31a74c68ea6afd042cbad914e41c8873c016db8a56d46500d7ba9eb48467b78 +size 59588 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-en-GB.png index e709e3cde..029682499 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f47fbda4f0d11f1e2d0a1c7a9450eb29e60fee876481d248086baae63e216eb7 -size 116187 +oid sha256:f0fbd9fc66885803e5b98c71e93f79a36d104e12bf8b185ab2eb2a187dbe5730 +size 116125 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-pseudo.png index 25d681db8..af0606169 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e630b6670b0129ebc61d7eda16ce44c3321eec6739c732207495306fd099955c -size 138197 +oid sha256:5f17bbddcbc326acdcb79169377f72dda7bdc2546e6d388e40d2734578aa6656 +size 138095 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png index c71e83c14..6e9eb491f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af76c9c34c26f24a42efbb4af107f194bbc3b3b7a3196fe654f995b4bfc8c557 -size 69613 +oid sha256:97921b728431215514277d017e44bf9c174648704cc199106edd91bf85582c14 +size 69698 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png index 3950a9cd7..626e5b2ac 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb36363514d7a71a506c517b1b9a4139a70c1c40a248cd31a6a6449f972d8713 -size 91007 +oid sha256:1965b647d64c471abb0ab06bd4c538e9784587c6be22345fd7fe6fc1ec5d3a14 +size 91120 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-en-GB.png index 2e4fa5ade..ba962dee1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7dec0647f21ff860c69216a81653e0a0372a101671a4514d01ece1e96eea24b7 -size 122596 +oid sha256:f1b6d009ec248fccc7b168235b02d9f2bc10be927dec377dbb1a599feb9c8bcf +size 122700 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-pseudo.png index 82316c207..25cb29421 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-signed-in-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce2a1d2f11ef5c11a84e8f7a6ed1724eec9db7172779acc5334a4f3705b2376a -size 138189 +oid sha256:8ab70bd38d9b39a0f18530a4478bc3b125d9d9aec5ca6844596426f5d9a9196e +size 138194 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-16-en-GB.png index 2c7db03ae..9fbc2d8e9 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e5fdf24deec0f396a1a539abba2e68a17d8250bf638b724fc009eb6cae7aa595 -size 66694 +oid sha256:a287b2b5ec578d439bef0efaf7878c467f9835d84e109d1928cc1af7ee5f73fb +size 64058 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-16-pseudo.png index dec942d77..c464bab22 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ab9ff6e06c66451b4a10152c4d47b26da05178d27b921e3fd9ac37f2302e380 -size 87421 +oid sha256:3cc1dc371015f8be76c5f5c235e9f446e434efa0713b777e96a968e2f24f6a9b +size 84654 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-en-GB.png index d12e567d0..9f3f7bae8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb49f54726e6b0fffa015850a6fb7e8158269819870b40142bec87001cb896c8 -size 100747 +oid sha256:b898550b460e092b5e6d8e5cd50026b61ef7fc02dea61b11b9c6e31bcab6d372 +size 100661 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-pseudo.png index b1b4f305d..9bc37099d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f6608aa4dd0aa8f1b67097bc6c05ef5ed006291f822cb680d06078db4e1a8f4 -size 111269 +oid sha256:91c9b162be64a92fc455d0e4b587969ee936ca0b78f4c3b42d08e7eb6106e663 +size 111044 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-16-en-GB.png index d20ad4c1b..bdad2df5f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d018b725e95d80a01276f27dace563c19fc87bf6079fae8f763af406198e100c -size 53301 +oid sha256:a77e48d541d09bde879e8a514d2c3e116bb4f86a8bfb1182cb8fe9a5b3db002b +size 53261 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-16-pseudo.png index c32a9fe00..56ad7734c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Device-not-supported-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7939d723e8e8f7fd2d18252ab4781442224ae632cc51aaa48eb16f71e91a7ac3 -size 67284 +oid sha256:187e5d16e7f11ec44e388e7e8ce83430b9c9b2093ac837a27633ca417424f85d +size 67290 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-en-GB.png index 002dee131..528e37bda 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5522d7904ea153babcf025ee3cbf937e58539fb6bbe1414538f6c8e64b3b6628 -size 101949 +oid sha256:8992768d514f2032d1688cbc17fa20ef84f3dc0709ed4d8a824c265e709a43dd +size 101855 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-pseudo.png index 365624709..7adfa0fcd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:770ffa19b4c3a0b3575cadd525ca3edde85b25209e5032139f0871dec56c49e1 -size 110608 +oid sha256:ea09999977094e146233b557ee4a522485b41cd5f800d8d52595fe7375441998 +size 110373 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png index aaa7d8fd4..2973a7d00 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97d25a159c0e1b8cde3ed39f9116c8f67e483cb9a503ff79e600c719991ae43f -size 54696 +oid sha256:33d66fcb5ea803769361fd33b266cacca5aa61f393436fb058866bd7b6ce34f0 +size 54659 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png index f633c7b91..daacbc9fb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d594b2c8967353b608d9d5d2178eb723c53615cd51da1e00e37ef18d9882b09d -size 69030 +oid sha256:a40cc4c26ae3d31ff2b754426384a4e11fee664a97b86862715f47336e47ab2e +size 69002 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-en-GB.png index 5df664cf2..24ddcbdc0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:609406094108264b36f60a94c62f1a97970326423fd65b514b945b240922b39c -size 145760 +oid sha256:14b89eb0643f3619348ddf782d8f9162f70b3b1aab5674c33cdc5c6fe9be4991 +size 145605 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-pseudo.png index eea59b3e8..7a189b792 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee23abfa2520aa0daf7e71620fa98a5cc9039eac6678b9dd7fdc0dd11fe1319a -size 179265 +oid sha256:8d541eaab9610b6cf81905fb17544d6723eb0785e4f3124c41ab797bb0de39be +size 179483 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png index a6c611f64..337352947 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31a37ac88701cbbf1988e6c2793513336a455c8d34e5f58b42622dab3b295f58 -size 92773 +oid sha256:d6694fd476206c53d0ae93fdff0167c1905c0361f85804e66254d40326c7abdb +size 90280 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png index d822549d0..26c73e890 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15722565bb34ba02eaf3ee8ca60123ff03c2fa61662013b3da2e946f94aa5830 -size 133701 +oid sha256:fd110118bf49d02f49288cef6f0d02fc39eb8bec96a91eadf52a96e6ad89e177 +size 131078 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-en-GB.png index 13b119625..54e24be34 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:910b6ca782bebf512ff7f2c2bae5fe154b88a4cbea310875b02d82adad0e3182 -size 117229 +oid sha256:eb10649f25825000e0e512c1d067d84ae04194ebadb6f4ea302cb10fdb1ecf34 +size 117323 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-pseudo.png index 5d4064008..a6152d799 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb9450fa8dcd6c34b1a0d708ddb23aac4c753907fa7d3e35b7c4eab3d292f00c -size 122500 +oid sha256:6ed92f9d2e4a3288ab4370427ecb0094eadddacf9ca690431b2d5111bc2d20b6 +size 122491 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png index 9cbadf884..93666e422 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:725c0f5b4ab183df93312bc14a2dc4ac613f75b700a063b4764b0fb76d01c37b -size 59808 +oid sha256:f840db6d50fff43dc8a42bcc2f39c5e21dedd6680e6b9d2d32e776506e9f891d +size 57184 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png index 7b933574c..7a2920796 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a959ce6a167cd448dd77fa93247d2a6fda15e1907d3e09ff6874646b63f0307 -size 72720 +oid sha256:466d301985d709823e32afa6fc6efd21189a10d3a29986f0fe306f63faf46fe8 +size 69976 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-en-GB.png index 7ca2c5c89..aab8974e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:399d72ae2274ade493b1e6069c9bda3664d6485a7b51d17ff46acc721b3a4747 -size 120604 +oid sha256:4bca97ae120c6d0565d669578ce6858ed7f52d34cad3deb1f259b10893b21661 +size 120586 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-pseudo.png index 94a4ca914..8ff1d4d6f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81a6fb43912b00877c8d681e71603aecdf9839196cd8a3685a755d48841ad6c1 -size 143553 +oid sha256:7537ac8a3d489aecb356700cc11fa80b2aa74c5276b562e23d984f99b71a6087 +size 143521 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png index b904b61fe..4ec2e1dc9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44ef2efe4fed2f82c081f5294fde37704a381b11d34c3bf7ec3b60c08a24d05b -size 72833 +oid sha256:46005049fbcb338e8f2d61d30e0714ae3167b448ced78850fc32b8a2138e298b +size 72834 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png index 29ecf1c9a..4aab549b2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f85989a0dda97a33a22e7a43aef88c8800a5413af283224ea355267a60a03fa -size 102020 +oid sha256:9f16898529302568e545edfe9a00ac2f7856b7de22216193063ba96efaa9e70c +size 103065 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-en-GB.png index c2899150d..f1386e14f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4624b04341dd9beefcf689a39b047c9d6ebea797d68996e4ea669b45d6494faf -size 112957 +oid sha256:ad1f69dabd52d333d540b641af85307c1b01747f1083dfaab8ff633895110f46 +size 112939 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-pseudo.png index 17c6593d3..5b90d6029 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58643fdc4bc95fda9cdc91d33b9b98973c6b67de256ca800a2babece767808d2 -size 134945 +oid sha256:f4a3bee6fe5de50df6396d1afbcead2f10440e04d56ce7fc7891b3badac0e26c +size 134913 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-16-en-GB.png index cf115d909..9532f3016 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75e324ee678e506005f852ac377fc02281ee60335c3f996df7528335b9cc255d -size 66133 +oid sha256:fb3407e687dc5dd007fc82891567092bf15490bc6498a29cf6bde386d9f9c4cf +size 66134 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-16-pseudo.png index c54c4ccab..7a59de6a4 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5407ba8180475d70b3aee7fdcb6a2e8e84fb6977a29b1b223566c3d31872ec2 -size 93700 +oid sha256:1ad717285b90aee453fb29b20e7d3862af36155581859ca3714b5060f0a353dc +size 94658 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-en-GB.png index 5bce385c5..ba8732a09 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6304a9533f74c7de7710ec9d29b9094457601219fbf68b4c908b8a35257a51bc -size 114206 +oid sha256:3dff841bc8c47fd229a2a94013d908194047fbb4a33b01438e04ac0cc39d8947 +size 114050 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-pseudo.png index cbd1327b8..63d031fb4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dbcb5d22f3cde392c47ef33c123d7efe0456b037c6f17369a807fafa6f467581 -size 137474 +oid sha256:c253f710cc9a11f6356a700d3ed3194e89d32aba5095dc6e4111fa5fd7629953 +size 137302 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-16-en-GB.png index 1cd39f26b..575648371 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eeb8d2e55f2445deded57957eec3923f7b432622f37fefff6839fb6b1e78760b -size 69135 +oid sha256:b068ab386807c2fb20340ff24c7b74b07bccf8645fbe3ea5562a44f8f57e89cb +size 66645 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-16-pseudo.png index b490eb343..33327d855 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.No-Camera-Permission-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf128e23683ee6fb897b4e6983786f01860fb085bd341c376e728344bca8cc4f -size 95941 +oid sha256:cfd7c23837fc87dfc2bb97cb84f6ed950259deb55cab2684f8310a8593231c80 +size 93432 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-en-GB.png index 8b80cca5e..9e094b60a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ecff6f7fb1e12a42c25761e0b83658550e62e6ec4a8fca1e239b63d5851cf31 -size 122577 +oid sha256:152a6876682e0cacd43771583fe9dc726309db988c7693146b9f0e76ed140a25 +size 122673 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-pseudo.png index 202dc671f..eb5e0a1d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77a3fbc2dd4fd8f6c45c205bff44b5544b4e1d368e0457f6e9ae4b17ecca9b7f -size 132753 +oid sha256:6ad5f224b1b79f108ba28ff4839a734c2c99379fc3252d73f7552c05494508bc +size 132750 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png index 0554411b6..36f075192 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:033db8a5d3b9b0cd70b8c8b01856dddf5703f11be3027fe5ac1d1c105ab8f1b6 -size 67172 +oid sha256:4b26fe7ccf1fc43e74bdc9619afefc7c010506f3510c7a8e5b000e93606b1da0 +size 64542 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png index 259030529..6b45a9fcd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a355d8275b8be088bfab2b61a630fc164eb6ea3537ad335435df80b899615c48 -size 84715 +oid sha256:293bcf90f3490e3012efde4b4cd47a6ae5580392c6f51c2acf3bc951ca886aa3 +size 81951 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-en-GB.png index 64bff7b20..a9908e10b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ab48a61edf64352376975a369cd30c011d75c1e7d430147bab7a79ac210fb8f -size 97966 +oid sha256:c9d6178ade4496721159e3581b5f55db6adfa903fc2ec2da1859b9b932ee50b3 +size 98058 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-pseudo.png index 9900f2ad5..60dace087 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2021b7027e9d2e5bd45f281a65601fcc06bcba950b18b45956ad019595531f58 -size 98876 +oid sha256:c288fcad2a123e084516039b9e0cf60501a96f64f664ca1d5df2f1d154eec9b8 +size 98870 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png index 2e4c49382..11f34e96f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbb2b2328f42695fd3211f1eb6eb7b4e4952e333dca940222d1a3055efa767fa -size 43272 +oid sha256:0fd24118541671c9e3a29539b854cee7b0c0586d7bd363f7f87cd9527f5c1ede +size 40675 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png index 2aff99ba8..db1b988a3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31e2c904ec5ebb575b8aa2ddd777bebba51bf71d5b6284587255bdbbc3ceb844 -size 48244 +oid sha256:09010b3c3be35b228127039e62df58a29a5565670724620ce820c8dccf0fe585 +size 45531 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-en-GB.png index 278878496..9c6dffc0a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:438c4f8aa7d2b2c99517a001528308bf93581dfbcbc069939822abddabacec35 -size 100611 +oid sha256:7c3089de3d3774202fb36cd413625b3e9ecbf2e12bab77428b2a2f54180199b4 +size 100521 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-pseudo.png index 1e97d4c1e..9cdfe92f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2688149a9a06708e899f4ec331955a81ab99a77ee402216490862bee8f9032a8 -size 109384 +oid sha256:c33193ff1a4fe9c82d56837c87be8ba40759967f310e2564ba6edea8ef8551a1 +size 109194 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png index 317f408ef..85dcbc8a6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83a56dc7343fa05868f0a1709c8f3bec81cee680ed5e98859aab8eda81b99c77 -size 53285 +oid sha256:2a6ae461aca945e30cfba668d3195acd792023fab74ab47b0a3ce26ceb7c6a35 +size 53248 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png index 966a7c4f7..49c1436a6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:807d0bea7c7a09731b4c5c500847adaf46dc8a42f9662bc9eb2151d7737e60e9 -size 66588 +oid sha256:b3fb1bbe03f8585898034bcc1204dd46ae931e4245708287ecc05c2e7f1362e3 +size 66576 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-en-GB.png index 4a1ab5acc..1ea448551 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fac26ad6bdbaa1f42722cd0f23791eb1d4292924e00922712f5404c0a24728c -size 121161 +oid sha256:8d20bbcdb65fc5661ea527b8ea975d0e19c21ac45ab51b53a8de78211a06f823 +size 121084 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-pseudo.png index b3ea26bf9..de75032c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6766f417bfa1be5bdb5a6fa8d6101c6e1e88f30b9e7447c9db7dd10bc10e71ab -size 135740 +oid sha256:11b91a0a9fa71b1ddf2d7f1b734477b83e425034c6ec98076d45a54e313d7b25 +size 137887 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png index 92913fd81..59f6877ab 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f44d710e4ae35b47a3d5f382e3ff9a9efbcac9f2a259435e78a80313719820ce -size 69500 +oid sha256:56d82691d3b55510c506c3373686357ae157f8adf9db56a077f3f5e8e508d985 +size 70821 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png index 6969aa36a..6106ec7bb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1fcf720a331fe8ac78ab5316392a640eb796221106bc1c9b12ec84ce01fd01cf -size 92162 +oid sha256:d8cc3604dfcd5b775bcc984db1c42131699357066af8df488adc93ccbfe890d4 +size 92023 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-en-GB.png index 567a96c32..0fedcd3a8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a405153f3d6144ed7ee62dfdcbcf54f146b839c10ecbff017c56e338cafe7b4d -size 85654 +oid sha256:61cf59afb8f69c59596c9d22623f936086407e53c9fc9f02a38e6700bee01d0c +size 85638 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-pseudo.png index 567a96c32..0fedcd3a8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a405153f3d6144ed7ee62dfdcbcf54f146b839c10ecbff017c56e338cafe7b4d -size 85654 +oid sha256:61cf59afb8f69c59596c9d22623f936086407e53c9fc9f02a38e6700bee01d0c +size 85638 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png index e941c560d..665ad49f6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f853688776896ca3ab033fc838755422f5792112b334b375ff47882f428a60b7 -size 44355 +oid sha256:833cf302413580233fb69ccd0498de868bb1f1011355cad57e58e72312c3a8fa +size 44345 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png index e941c560d..665ad49f6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f853688776896ca3ab033fc838755422f5792112b334b375ff47882f428a60b7 -size 44355 +oid sha256:833cf302413580233fb69ccd0498de868bb1f1011355cad57e58e72312c3a8fa +size 44345 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-en-GB-0.png index 09b5ecada..a7e118698 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c222996a35c1158d1dfebd7db8709345d542a722769f2232fa185d7e3067ab7 -size 124411 +oid sha256:f0e209df44908d8d7692697610d6c6e25b521c66139f5702bd7204f7ce8cfb40 +size 124390 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-pseudo-0.png index 83c8819e1..55eb98f4b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:006b491e50c2e89c30e656244bffeb118112cbce1d753a75c53be6dd429695d2 -size 124751 +oid sha256:d47622bc8a95188e7c08d8b1f1eb16bed2fc58c1450a668d1ea6ab1e6bdca907 +size 124731 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png index 8ae97ab0f..8eb9f5f0d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:576de56532f6a084d538cc98da161fecdbb25ad6bbe9879ec4c03d7e8190b53c -size 75989 +oid sha256:a2c438946306812aad6bd7fb16d84ddd779aaa03785af6026be9d7b8351dd00f +size 75979 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png index 519d46277..770e3745b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5daaac3b8b4e05395bc397701d764e890756bf6ffd51a529efce8a2e8ee1fb4f -size 77297 +oid sha256:b2c739eebafa9fa09f28979bd7d0c9b70d2082b70cc25d046bcdb87fad63d3cb +size 77278 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-en-GB-0.png index cf0afdbb8..424a2d51c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:075c0fe72d9a9e986fafba95c23c1e84c618f0fc237eaa6f674ee2cc90278479 -size 123244 +oid sha256:4515522fb6a9b6ac679652c75c227861e1e065acba9b937c44e057e757c8bd3f +size 122553 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-pseudo-0.png index 471320b41..37b9bda94 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b380c62be4ba81ab2d8801448b74ee931fc45468d51cdcc7c0476e47d3f9dab -size 145087 +oid sha256:4688e7609a411f1d8e1c26e061b0a0d5c51278cff3b57e2df3fce85bbb0a2f9b +size 143181 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png index 2e5b443c7..a91fd22a4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92f99285a82a0cdf5f5e51ed9ba06ae123adefcc63f3f7f6e3e5edb7857ecdb6 -size 77001 +oid sha256:0a94285616ed7ae387a44cdf54bd9765989e36362b05602ae93e2705c2d5e3f7 +size 73636 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png index a06018175..46bc28cfd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e40a9c797d9774e04f77d4416acce9af609bff191b3783997e34467d21d20895 -size 109025 +oid sha256:aa4f3ee76e8130d74639d68cb4db1703e39e6a21768f89a904c3aa8e0ab28ac5 +size 104642 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-en-GB-0.png index 937058f53..d8dae1994 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e5baed17a92e79e8e318646e04eaf1afb2d7eb3ae536eb113c603e660dbc8d7 -size 111296 +oid sha256:28effed2271bc88926a4d443807a0c5893d658bda836495fc5e72bfea01a37ed +size 111563 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-pseudo-0.png index c42f8a81e..1ce011034 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:478064a45b1a2e85a3a1d6a8be9678bfbce68a250023bd99bf1b54fd942fd883 -size 126220 +oid sha256:c15e4ff80f5c600b813af351d8febccd492fd42d311527ee83ad56e15bb2e43a +size 125810 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png index 0892cff13..9364d660c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:909fcf1c5e767941cf0f6173fa0c839e6e8a3f1cf38959ea70622e0f7042be0a -size 64555 +oid sha256:e9f8d321166133809e0eb3c057f41c25a1a61e8284cf5fe149693c2511b01b12 +size 60438 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png index 617416cb2..4624b0eeb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cc741867de261b724069c9eff788c1dcf827a828c131b987d48bd2954b4b7e8 -size 83721 +oid sha256:4ac74185502adc505572b186dd7a32830f7813af69351d23867831267bc50d48 +size 77381 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-en-GB-0.png index e16fae5bd..e310dd0ff 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e28d36588f155e868a9b24d78f7688c64fac91e57a81b835dd111687c265428b -size 132520 +oid sha256:682edc1a9e88cc55fd5e6bd229c25ddd9dac5b623b69ed91ce71badf70fc1965 +size 133730 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-pseudo-0.png index e16fae5bd..e310dd0ff 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e28d36588f155e868a9b24d78f7688c64fac91e57a81b835dd111687c265428b -size 132520 +oid sha256:682edc1a9e88cc55fd5e6bd229c25ddd9dac5b623b69ed91ce71badf70fc1965 +size 133730 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png index 6820db683..6f483c437 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d5acb74a871dc05d9112d6c5ee88d26f2ed2a489995bf9800f9c644236576f9 -size 85999 +oid sha256:aebed03e00636715f7147ec06d47170fe7382652ea16fc4ca4eec73fc2824712 +size 86198 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png index 6820db683..6f483c437 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d5acb74a871dc05d9112d6c5ee88d26f2ed2a489995bf9800f9c644236576f9 -size 85999 +oid sha256:aebed03e00636715f7147ec06d47170fe7382652ea16fc4ca4eec73fc2824712 +size 86198 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-en-GB.png index 0692ed6f2..5223a2bcb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:55b9d9687b331ad34c10f9230c2301f359f49e9a9652bce815a47d862603651f -size 143822 +oid sha256:eedd2e82adec7f0516661fba7e175a52a5e15db3d8694286a22a3122489f855b +size 149055 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-pseudo.png index a3a90165e..6e1aa8489 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61cd432a4bc1153e753167a844533cfeaadd172bdcfec7fb785d2c2a54221758 -size 160434 +oid sha256:6352010ce460e065b858a7e6a14ebe086307f42a41c60064781bd9e42c33bbe9 +size 164639 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-en-GB.png index 848702980..7671620a6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:893756a5b6654e5ac6d8e4c925aa4eac594d4c48e42bae116629b5790b5d0b3d -size 88771 +oid sha256:978d58fbf6df6e0716d641dd1f96f07ab4a5fb58f1cdb4cc97ff4ecb26e54199 +size 94936 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-pseudo.png index 4ff838580..d2539c92e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Member-moderation-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cac8a4fcff34598863e9b0f2a92b083b14156722638ac896cc53ec447fa06e90 -size 119983 +oid sha256:83ea257ff4926ec36db4a00fe96005dd50d3f3b983e08da37713e5dae9242693 +size 123794 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-en-GB.png index 92331dcc7..c8b6be37e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:731718df754acfe3a4f35c67eef835988e92190cd617842bb86dee755f868c11 -size 120326 +oid sha256:5bf85bfbf8bb51e3cd4c0af1449bd6df66520118f97fb16ac87c5a4f3440d9d8 +size 124176 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-pseudo.png index 098fb11b1..993522b1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c65addaa5a8d85c7bb51850f553fd5da1a50bcc0567d6258cccfd23d93c7b01 -size 128169 +oid sha256:6eea8e796cc931713618acc8c3ac8a2ea84feae02ef6d77f4b1634c98579f74e +size 132293 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-en-GB.png index 42bb6797d..daa0cb9f3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad00e6933f6f8820ffa2c9f99932bdc1465070eaebd9517faa9a0ceaea9cddd9 -size 69600 +oid sha256:a64b5e74c32cadab20c175bcd2401fddc30f86ee0a901e3059602cb3174e738b +size 73782 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-pseudo.png index 76071029f..1ccdf5a84 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Messages-and-Content-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ae5b8b47903caf81a4d3109c784be9797105a33c5e4ffab83a853a7482ca16d -size 84220 +oid sha256:c2f3757f3889273200ebf9d95534fb55810d78fdaf0f5cc43f283d74a2f22ff1 +size 86664 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-en-GB.png index 412d7b06d..bde809819 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b21a2e5db18a53964cd2b81296e49ed128532ca394bea6d241ea2ef8fee9b81b -size 138752 +oid sha256:cbc7d426ee5b7b9470925040afe87d9b87e0eb858e9e1f6b39d81573c714c941 +size 144079 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-pseudo.png index 50a48d02f..8815cd978 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6236fd3a948559e47f8a61bfbf5809918aafa6937f1b1a8f8f8e84ef2f7d87bd -size 153828 +oid sha256:1cca23131e3634023a743cacd2a87f25b464edf7141318970084051f58e9e3eb +size 155724 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-en-GB.png index 456fa85fa..e290cdf54 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7fb9e96982e972d6e1da937a323726bed374560b9d323910ad96924cc896c407 -size 85762 +oid sha256:fe28e742798ffc05ac5d010f772e014cdc149c6968d72cee614c2f3645b0da81 +size 90618 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-pseudo.png index c15d667dc..65f2ca11f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangePermissionsScreen.Room-details-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fac2e63550391030fb54115daf18b2e84c3c1f22b8feabb97d046bbf42eb3004 -size 107844 +oid sha256:50ea5e96cf7174578be691d4319a11b6ae6f946e1f5058419baaa48067ec0186 +size 111018 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-en-GB.png index 43e34b87c..48761b6a7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df90344bb87a1b2f65e85cc65c749054dacac02c0c634501484bc02a7a9e6429 -size 226433 +oid sha256:ce1572abc9de61d6fcaf47e8e7ea680a4edc932a3cbabec8cf51a68d13029478 +size 78692 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-pseudo.png index 61bf5bc84..476e5e6b7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:caa50aaa716140d4613e6682fa1facb12cc57f6bf6ee8e29e801ac5a5ab03db9 -size 238373 +oid sha256:2d0322442b2271441b9342d37377b7c115a00b4a03d9d9f20f62433882ff5ec8 +size 83237 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-16-en-GB.png index 35dd66769..0508e31cb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d40cb24ec76d87e4f8b0c4ead60a4fab50d8cc24ee0c903e527ddfaa5896b60 -size 170864 +oid sha256:957a5c580c4b294ccaa3287aa729e29aa341ef40186930a26a6cd09856ed9630 +size 34859 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-16-pseudo.png index c0477a5e5..6f6a07dcc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrator-or-Owners-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7639e4fa100e48262f35e996caa31cf9a67c0f10cb73a4be8c2fc64bf70ee8bf -size 180516 +oid sha256:e839ef6dff81655f030c433418ff68fd009138fd38742aa18b4fb064728a8a27 +size 36214 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-en-GB.png index e9e54b17b..868d7e061 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:356954ba65b0fe34441df8440182ab743df30aa9f6c6932bb9b5107ae87cb839 -size 221488 +oid sha256:cad2bc396854022288f45168ab78382846028dec354eef7a9ca166195a84c197 +size 75679 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-pseudo.png index 499b6a07f..85b19f1ff 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ce7e57ce7b90e91395dd3e0c9b3a73d944ac43a8f36feb77fb106e9f86add67 -size 231973 +oid sha256:6b2893bc140cd518b51cba9b8bb20e29356317ffed947172422ea20f146457d8 +size 78311 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png index e4439f43b..a7a3e3b9f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28dd538e435dc4125d34c8cbf45c5403a4dc1b4759d3d16cb0e56f4b1bb5a63f -size 167867 +oid sha256:8b99661283a4b0a0b8f278fedb69556585bdd322a86a6e23051c976a4a984539 +size 31765 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png index 3cfef6034..fd121fa83 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d56fb49526da5e418e3311a8ab121efcde6cc5dd2234c3662997884e0f2e6991 -size 176485 +oid sha256:e18384d99e5a0b74152c5d8df3fd3d33cdafdc109146e416877581907524877f +size 33532 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-en-GB.png index 13ec0de7d..89f04342a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d7ee9d49212820a88171df680a31ad658ac62ae7fd3474a24403c130a4630d8 -size 231534 +oid sha256:2ba1096a5d1e69905f441d2f94bc31c8cbc2b20d6df80814ae3358840eebdd0c +size 77809 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-pseudo.png index ebb1cae73..259341680 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:312f9f0d95ae3dd31c2c8ab4ce37a9de51febdd79a9d65b60205241e5a18f1cb -size 247092 +oid sha256:bb30d66c2edbaf126fda3d6e9d722744f44f7a374fdbd380f4a8142e322a2527 +size 80430 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png index 07960a1c2..d1b4a8582 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ddc42a0c0de638440189c23ec7ef85c9b84ea2fdbc8e222994adbc5f4ab88d5a -size 172583 +oid sha256:403a12b08ed46f735f820d932ed2e9161645bac8972a2a8a2e1ed16330709292 +size 33934 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png index 58bd0ea52..33d31007e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47fa5b57b70a18e75a9b690cc96e5bb3c7db26ccd06eae05f3d3e6f8bbd92647 -size 188261 +oid sha256:abe153774ea902897c403de7c39c465b5f47b63e195c28f3e9b956c71ad43e0d +size 35460 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-en-GB.png index cebf32f76..164f9e58a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dde88bcec2a8cc78858a4513f23a9b73aeab2478e52d730823e451e486e6d082 -size 217524 +oid sha256:9d63ba5b760cfa3e6e50c99599a84c1e411ed702ee528ee4720337779c83b27c +size 77198 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-pseudo.png index 01b134d3e..dd5222713 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37a45dbaf05d8dd1ad69d625aadcd9291efd5fecc490f267b72a60f903ec5986 -size 224360 +oid sha256:e63993d265b03f2805666f29bff5302729c3195d8c3ca95304f156622fb7df38 +size 79126 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png index 14eed2b09..77a8eb77e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8e6022a3382c727169489bb965bf7ba2681417f4fb3123b4043745ca8887046 -size 161674 +oid sha256:8a39a863f6c5ebe59799f5ff951d4f0dcf6dd6927e97ba7626b1a26163752c89 +size 33256 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png index f132a5704..424b4b570 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreen.Owners-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:484250de28a8f3804c89cf551cba3903675c6e2fd28ce80e4b25145a674b430b -size 168264 +oid sha256:b0bf96f371855f3be115442010bf5c03d07d9e79e8c34d215f8212c1f8253d41 +size 34947 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-en-GB-0.png index 404a1704a..a489302e5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:529799dcc4f91d062a2188a8f895d0955de591f4f50141c706715594d8061679 -size 133841 +oid sha256:101d3ea9e09eec838f1ea2284677a2126a1aa530f6c79374ee547d38eb0f55f4 +size 137393 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-pseudo-0.png index 89d38a09b..fbee20f41 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a68b84f0d3cd4698ebe1cfc10858d3deb5268f075091896e399fb386ce4d1655 -size 135278 +oid sha256:598b8122f9df579ce7d4e30ba6ce53e37041c3fc71fe2d6a56e62b74dc58241b +size 138833 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png index 5ee10525c..e53b7cacd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:901d154cb99ac868546f28c3825885cfd54a36c9ad5c0e658c0c342b1d154435 -size 79400 +oid sha256:1e6725fb617de12cddfb50cd8005df7b3cb6f066cac313ef6f5123d19b9946f3 +size 84430 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png index 95908a1e9..8f3ce8cef 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bd9c8e9c7a62feb05cbcbc847d995b0302599f96f480c81c907c17df75c341e -size 80397 +oid sha256:2195d218f2be5a827e72ce86ef195e627177da2f4c2eed1c14cabcd3515ad3eb +size 85414 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-en-GB-0.png index 5498b082e..9c9449514 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60efb65986ae484b7f7da9648db252ab4aa11e0047020574244e070972813f0a -size 62712 +oid sha256:d0239b1661d39619a8471348c1932ee688107c1f9734f4243d23b29539c2aedd +size 62612 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-pseudo-0.png index 5498b082e..9c9449514 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60efb65986ae484b7f7da9648db252ab4aa11e0047020574244e070972813f0a -size 62712 +oid sha256:d0239b1661d39619a8471348c1932ee688107c1f9734f4243d23b29539c2aedd +size 62612 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png index 08ce73f3c..72462c8a3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9f33cdbe4d65566be99949b00a54439b90d4d010ec9fb9af505fbc043271177 -size 52462 +oid sha256:c36f2935a89f2f1155bfae61e7465ecf5abcf9e6c3f07c8a340a7111fa052780 +size 52352 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png index 08ce73f3c..72462c8a3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9f33cdbe4d65566be99949b00a54439b90d4d010ec9fb9af505fbc043271177 -size 52462 +oid sha256:c36f2935a89f2f1155bfae61e7465ecf5abcf9e6c3f07c8a340a7111fa052780 +size 52352 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-en-GB.png index 314bf021b..ac59ee0ad 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a2b6b33714349be8866a1a33a251723058581d78dbef039a00633f715313f8c -size 105151 +oid sha256:24f6960ff1350c0d1c4d625148577ae01d8ca3da2a4a7e8dcb37286ceeda98c4 +size 107390 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-pseudo.png index ece51a164..f8be5f87a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75a7ff67ecca25cc4a318e34945e2018c40ad542bd8703f6363ac24b295490a1 -size 109670 +oid sha256:9e94f791a528cf53c2e367270dedbd994b11d17652db8105782cc166cfff11ff +size 115468 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png index 877b3a0d5..2987f0e7e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f1bbeae05f604987ac0e7f87c9cda1032e81cf9f06225a3873edd30da67594e -size 57822 +oid sha256:a3d1592e93ecf1cccc2af7134ca85c5dcc6ce47487b43c37d5c4b94078a8fe0a +size 60240 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png index e7fe2270a..faeedeff5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Editable-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e14d2118638fa24301fb14553bdda71255db16c751835056915d9ffb710a8d8 -size 67816 +oid sha256:224cfe1d967e335eaec66ddc64a6e2469771b4a4b79f2567176df20f8fd4a6d1 +size 68592 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-en-GB.png index 0ecbcda24..b4f01a371 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2271cb9811ad772b2df2f3ca4a97d9f2784611dafc321940aca7c429366afef -size 96768 +oid sha256:37bbd5ee780e1b2df90cb6bfb19d15098b358195d0dc78da97a676c2191f5899 +size 96409 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-pseudo.png index bd5c8656d..bd2e63440 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31ed52c18db7e47916626fb03bbcb046cbb5d0f3d7be58c2f7b5fa34f9a6105b -size 100393 +oid sha256:8111f2a78a143e8d2695198846fac4a3b2b989b9b24cfd476b6253ec8f4b300d +size 100596 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png index fba9f3fc4..c6285a254 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1561c8ac533cc7a6910815613ab49ad1d5d757088a31c612044421157738523a -size 48986 +oid sha256:de4aea2adc8d45a86b1dee657de56847285a3cc0c806b718f90ece8e192b5034 +size 45396 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png index 998523a71..cb723bb3f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7d60be0ec99441733d880a7d28f830096bc2ca3e5f06d5803d5faaec35a8189 -size 53661 +oid sha256:010b742064a308abca9526d30d84e3832c2332c2325dd80a2462a8d5f447d681 +size 48179 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-en-GB.png index 821e3fa25..2c71e6160 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a653a2e02eb44c678d7e85bff9976d496a09125a08c563d17c8ff35bd393892 -size 239820 +oid sha256:88c6bcbe31f1e6556bc0e4ec18add2b3534c2661bc7ff99af1f42c397ea9e0e8 +size 243126 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-pseudo.png index 368ee38ea..62ef96708 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verification-Violation-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be5e18cea1ef248ee895ea2e8ccc26859d3abb60c907a06fc26fa3654fa526b6 -size 244968 +oid sha256:00271809132ac78652361bfda1d9a2a6eb40d004c49c21d61a5de35fa42ff6b4 +size 248559 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-16-en-GB.png index 73ef7903a..c846ca003 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:098ff9a6de7982cd6e845127b396ffd4d135f8630c1680e11aad405bd5a30723 -size 177769 +oid sha256:c88156a72b1674da58882eea9fc43575f90453f5932ac1a861b3e2336ff54365 +size 180008 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-16-pseudo.png index ebc81c9d8..2aa70e6ec 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:442c1ab6c47cd67180a407de4e71359cdeb065f569cd4e20c3b0ac00956e51b2 -size 188309 +oid sha256:745b9dcfc76a2d668abf373c6578ac2591bd21f48e1c0c760d7f2ea459a2a40f +size 189469 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-en-GB.png index af7e863d7..9fe423685 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58e310715990f4cbcc4c809563c0375725e0f040c80a7faaae97575889d5ab77 -size 239935 +oid sha256:40a4fc82fbe92361d562ee4562bc82e4038b504027fe2408e40bb84a2d363b14 +size 243249 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-pseudo.png index 996735378..b4018cb70 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ad5a1fc56b8305456f1df5e0da807097b3e9f242e256fccd76245d6be589183 -size 245087 +oid sha256:9cc7646b753d05087571df1410c7f69b61e8ced9761ac4726d5b1c5326c122be +size 248683 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-16-en-GB.png index 09376f357..e414bc89b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a29500a34a3ad174345b8ab80732b89db7bb939928a0725545553fc190a39ea -size 177873 +oid sha256:e98a4d53a4aafeabba49eb9e9d4af8a5bd6d611de6ea44e409fcd10c46f16121 +size 180111 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-16-pseudo.png index 85b4f852a..9fdef11eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-Verified-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:740ea2d62bf7664ada8f009c713faa77f8c7897dd211584ee11f4d79dfe70d72 -size 188406 +oid sha256:c538833912498e60cecd3f71d27a988f5d4b2017d69896cee529e19aea3a943b +size 189569 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-en-GB.png index c6caacbb7..73b3ccfd1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eef605296b166f361f20ad8b711851d7da5387431e082ff2c3ca7c43b53f3392 -size 239011 +oid sha256:66a8f2954305b3148f35ad77cc5406964d531a05e30388c9c827adf954ddf5d0 +size 242276 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-pseudo.png index 8a3177915..99fb9496b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46663ae9960fff9d7005278c4e9e4a8a7ccf6f498db52e6c9774ba03a345669e -size 244144 +oid sha256:29f18fa0681d55c4b548315b8ac85be154c478b08042c642936d32b8957b1557 +size 247711 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png index 4a0b1eaea..097ada70b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:236cc5fedd72923df3f23d3fe17d35c370e2caeb30632791fafab732641f0e53 -size 177013 +oid sha256:bb70bd4b064b3ffa1e009e5a0232be10e563c829f55982752d34adc442fb515a +size 179273 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png index 40c4558a0..fa1b43b90 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ccdd2c21c04d0216fc212abec3507adb354a38d5060f62e3a605598ab5d9b70 -size 187635 +oid sha256:2341d67a7db8ef3034e3ab41cfe7ba73c1169ff873796d6bd14a04efa385626d +size 188772 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-en-GB.png index 9828a30fc..44f1064a8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:420d1b9a950c6acf3e675c06855c30fbd67ebbbc91565f76a5ad4c52b97b2a76 -size 174545 +oid sha256:532d9284d4a0d914e30c591c3aa7d56e5249a35b282dc4f85a9067abd3208bd9 +size 177911 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-pseudo.png index 69bb07bba..81eac6255 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:201f84d7d4086ec0297e0369727fbf39b85d531d5f2fa616e117a300761fb5f3 -size 181026 +oid sha256:3a759e04e103f29e93bf8345e09b69d17ebece204156bbc95c6c5b233ef62ff6 +size 184793 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png index 514c354ef..ec61e06c7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33c0a7f31801f3e2a735a944146c5fb5443996f9b2155eacf2190f235e81d70e -size 112211 +oid sha256:2199c5596eb0608cd3e89552cdca505b6bfb47c73cce3303f07c05e8e5aa4e9f +size 114916 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png index 68af4440a..ce070e99a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41b2e40e4b528092e8c2c247207c3aff86bca3c11963d0d824764439000d7800 -size 124138 +oid sha256:bd0382dd70cff67cfcd3e0ea7d84c5508e3e87c26c8363e04c31b12bf97eae57 +size 125201 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-en-GB.png index af60620fc..103910e5b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87f2add68d8134d5fb35590dbf5fe1d557b1ec6219a81d1b2ec130b524248cc4 -size 150733 +oid sha256:96bebcc806c682271b367064f909d0b93b8da5e679468e02d6269d8111240e56 +size 154755 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-pseudo.png index 6efd3589d..4177a1ae1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5bdb9e03a54d64d1f8fbb3efc9a78d826df24db9546b149fd292594b0d50ea79 -size 161348 +oid sha256:e60230de971e5ee7c22f1fcc787453ee33f2fc200ca002b133b5b2da782660a2 +size 165381 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png index cb53375f2..e38d58581 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3e64bb174c7641674863eed7a3623655e56e4e5dc633d2d8f29962f0d340140 -size 97555 +oid sha256:b797def405a165e443ca14f1219dcb0a15a54140ed38c9c10b55ee4bb31dc1c7 +size 101569 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png index 2a00fe40a..ec8dc71ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aa8bc34c2318f287a27c1beb4c32d59aa4eaf1d88eae0fa09b3092ddf5d8bc7e -size 112087 +oid sha256:54cf3ce8880ad6eef1f392600b38cf837ab2af86103116635b19ffba226f8988 +size 113930 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-en-GB-0.png index 53bc1395c..f2aad8c17 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4099874c091e58ec03340f2cb95a94537a34564f75d3747de4465746cf81f0d -size 151367 +oid sha256:f7e57b920f671406f35bee6c75e4f635abf5c7ab5f5c393d3763180f0b52405f +size 157760 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-pseudo-0.png index 53bc1395c..f2aad8c17 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4099874c091e58ec03340f2cb95a94537a34564f75d3747de4465746cf81f0d -size 151367 +oid sha256:f7e57b920f671406f35bee6c75e4f635abf5c7ab5f5c393d3763180f0b52405f +size 157760 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png index 594d13542..1e5dce462 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64017d44451b4d2d51718dfa720f178e78f7354df8c282ae52fc75f7e581eaa1 -size 98534 +oid sha256:91ef789356ad4f839c09cc6aaec7e54c8c0132e13cf53e05c806654c9f53e456 +size 104134 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png index 594d13542..1e5dce462 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64017d44451b4d2d51718dfa720f178e78f7354df8c282ae52fc75f7e581eaa1 -size 98534 +oid sha256:91ef789356ad4f839c09cc6aaec7e54c8c0132e13cf53e05c806654c9f53e456 +size 104134 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-en-GB-0.png index ffe60318f..9bf554ac1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cce47838a62b5b6ec271b0dd9549f4c692f1748ae58c191910e35f4e359d6a8a -size 100519 +oid sha256:56ef756203c1cc0eec0f00be43627f5fa7925a36e6e02cae51d6d80899c13658 +size 94298 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-pseudo-0.png index 4a34e6ed4..82124a1f0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85e3ccd5e6fce88835353b6601373a40a16e5586ff71fc868312ce89ab44e5fb -size 103297 +oid sha256:51733498cf7b2d84ed2df634d26c360216922fef7620faa2bc34d141c0026d86 +size 95969 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png index a182c85ee..c09388ed3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8cda9f1254bc5630b49f6d7cb4234403905342395c5e3b888f95dd9f56d9397 -size 57405 +oid sha256:01d4df31c919cb52f81995d9b92eb9696e958e16d608e6827c97b93bf7e5722b +size 50303 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png index c6fb3e858..fc36f482e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69e66055a4a08f01becd19c6291d9e6e36313746a4a3c0ec64ac8fcddd7a239c -size 59758 +oid sha256:97c8e04b52b99edee3fa79ae67fb85e813c63ed490c3157e5914b64489b76c47 +size 51458 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-en-GB-0.png index 507b6b20f..5c2455bf2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dae344ccfc330c8c842ce441fc614f91f3b00eb502accca23557efd03c9480c1 -size 96968 +oid sha256:7004ac2575855d24d9d1a6044136969c9bf8ea5917dcbddd4776e457225197a3 +size 73862 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-pseudo-0.png index 507b6b20f..5c2455bf2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dae344ccfc330c8c842ce441fc614f91f3b00eb502accca23557efd03c9480c1 -size 96968 +oid sha256:7004ac2575855d24d9d1a6044136969c9bf8ea5917dcbddd4776e457225197a3 +size 73862 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png index a621b8605..9137c1ea7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3ff9854297e3c6dcee4181367080a2ec6192489e66470de043150ac9a10323a -size 74611 +oid sha256:b6d27f2dd7d26ce5a0259334cfaaed5a423e497b9cdcc53e72b03490d4a64054 +size 56147 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png index a621b8605..9137c1ea7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3ff9854297e3c6dcee4181367080a2ec6192489e66470de043150ac9a10323a -size 74611 +oid sha256:b6d27f2dd7d26ce5a0259334cfaaed5a423e497b9cdcc53e72b03490d4a64054 +size 56147 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-en-GB-0.png index 67092c90c..fabcbd2e0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33fd6bfa371baceb2961b083e6e54a6004178ad699daf2b124aa342e3fe5b491 -size 109798 +oid sha256:1f9bffee40f9a878ea734934ae85c91f9cd6c5496c669e200e8a3efa37d9604c +size 109808 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-pseudo-0.png index 6d88a4fdf..bd12229c1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9572d156ad00d2a3267dc4df8f1dc32451109c0a52a4cc971a90bb0dae290a9c -size 122599 +oid sha256:32f0fbde4be2c25999ba47b3a8387ac8ad1871e40e5bdf5fd444da7988d7209d +size 122597 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png index a89acfd06..6050d2de8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b14bba635eea94b7b19de1394d00ca5dba271b7f7ee632dd47ebe352f7a3c93d -size 65003 +oid sha256:d4bb046ff2c3fee3f167ba3773f5309085b327b79b660e79ca118718a842cfd5 +size 65008 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png index 2c5919227..1cacb6b46 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f4d78ca9ebd230551fe8a1b67b61a9c3097356dd626618c604d7c2909dc4ab9 -size 80634 +oid sha256:8ccb97385d2244f48df2f9082165c23a1298fec10ae0113ecaf4d807611565e4 +size 80641 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-1.png index 393b78057..9d4a2254e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8b9a402360e33d722ef63c3dde1368993cf68a5ce1636e6bd10ea594b18ba12d -size 78637 +oid sha256:f867275d7860397a99f37da2e82f91330e5a011d1f3d740c87d5fdd833c7ba77 +size 78647 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-2.png index 22276f38f..e40aca0eb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebc1e89197c4ffded8edb84c2651352edf36b1e8eab423fe2f5dc725fc5cef04 -size 79497 +oid sha256:0f0fe2a1d73d56003f2a5f63d612b41d54107ea79ed723824cf0a43a940d65f1 +size 79536 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-1.png index 82fec80b0..5d8f6acaf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f58946327c64203cd7c30e8800bd51cf6e7afeba9487a38277b65045f6aba89c -size 81431 +oid sha256:01ef30d32fbb14a3da2a11b64e0e6e2d893d4daaaeb8664b034913031f286247 +size 81456 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-2.png index 97abf39b9..11e619e0f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:921d2cf540bb43615df379e7202cda65f6e529629a2b4e7f98637544b89a9821 -size 83301 +oid sha256:ab94f90c8f77064eebe92f4cf79971d6535fa6cd94490b8c50c86ae06effdce7 +size 83347 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png index 825ada6db..82d909a6f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6a46941f32c2225707117654305272196570d336f488ed84c6c8ee8ee181632 -size 36832 +oid sha256:c3a7882c519ffdd2df24c673903020feabd37ddfa13ecdc2d78b5ad278e1ec91 +size 36844 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png index 2b31f9e67..33bbf0e9f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e28b09b697a6e2289c855fb465daec912b4e8b095271ec998ab4d955daeebea -size 38061 +oid sha256:c7c897383dd8ceda1626f9437b463cc46637ddbd3a234ae4352a832a16bbbb0a +size 38119 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png index a734e699a..244d815a1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db9af47e0ae5b97f86c871847d7110a7dd04dde19d95218b17d87eb9eff12d09 -size 36078 +oid sha256:27d6353962f1572dc32521575156904190fe0c76d56ab615ff0ecb32404f64f9 +size 36076 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png index f6e1dff43..c8f452f93 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7af8970477c261d8a760050b19668df19d08ac4f97cd982942c9e325b459c199 -size 37393 +oid sha256:8d877aa1f7717e5906cffec9a81b712cb11a58f6865280c9d629becc04089bb9 +size 37416 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-en-GB.png index f46cefbf9..10d3a3125 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc9057e946a55019caf464ab7437197b5bd0ab5e83076aba8a64bf65c309773b -size 180336 +oid sha256:3c62a3b9339a124ed376a7606ec4c9906629e280620353f09f37003381dbb65b +size 180098 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-pseudo.png index d3097b0d3..a7f77040d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:48b686ff1f24cd842f4d8ae28c11c3a62113d2137e974c68f52e551bdb4514d8 -size 180604 +oid sha256:b436282e712cccaddb3e5621157145dd6f146ede560a16ceecf3db33a0054bf1 +size 180363 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png index 90108ece1..8f72df497 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56b877e9188f4dfaab208f93d34fe1dbaceed62e5122a87bbf5b5708d59ef789 -size 121429 +oid sha256:c1e34cdb5342a7902039a01ac19d33fa9144f201096803b804ae994a5b76a6de +size 121213 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png index 7c8e56c58..37203be4f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6bdf3c45eb5a7ec4e44cf20b1a667f934b51c6316d05c85026749820544518df -size 122011 +oid sha256:1c83b47e852aa28eed396da1a413aaa812ab01e1766e933b7bfa1ac277e45703 +size 121827 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-en-GB.png index 610a996eb..3393134e0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b82b0853dfcc3cc4e1bfd39afb228f924bd983fdc6b5898661739da8408ef859 -size 114690 +oid sha256:49519d6992cdd1f6860e60efd38da2d96342719178285294ad0ff51a0f6db4af +size 115332 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-pseudo.png index bc99851c1..52af07a48 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a767be9bfb400418926cf2a763f56f3f561033c8914ca11a2e298386d941f530 -size 116926 +oid sha256:63dfcd95ace608d2abd823a8fd29d637f2b4aaee186712a5f4e89d50a70a2518 +size 117556 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png index 459ab67ac..8773dd868 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9018d5a1c49c573af677f1f7c77319d1c03f3191b9c232ae73e9e6f673a90ff -size 65834 +oid sha256:6918543661dcb2b4e68e585c9f8a82c99a982067a77807a49cea392b68a9e62e +size 67545 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png index 06c3d4894..02a81f3db 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e30e0988f777a28d266047e044f2f241c760ac5de8c452d42eee058d0e254c8 -size 74459 +oid sha256:c0e7b12e0b40ce69dee42908350356c3851978037149942fdc3cd465c7aed39a +size 76293 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-en-GB.png index ca4a08f30..08266d950 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c585072a46ca403e9632346396e3c87575ee234ceea19b04136084b6239233cb -size 114522 +oid sha256:514c47d79c008ef73a8d8582216f29de2fe48a55fb60dc1187916272deb7dac2 +size 115213 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-pseudo.png index e6209aaaf..ff09638b0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e82947ee7144b017d1920e0e01002e362698064de0fff9a96ebbbadc445f4ac4 -size 116504 +oid sha256:1f9000e589ed953ccb781072b57ddde6a56f74c475524f31829ee9ab0d2d3687 +size 117194 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png index df7141d93..352f81cbd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49747cf7765571530cbcce81ed6bf6337e4e0c820201ffc92f9b33a7a6c6a167 -size 64941 +oid sha256:3413d0258de0ea8f0ac208663a1e4a6362886a50e4f3c491f979dcd44381d4d9 +size 66898 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png index a6da35fee..1fb366b1e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61d5a55f98130be3951772bf9ef2210511de1de0c347786850fda4b5042297f6 -size 73652 +oid sha256:3a202ea7e1545d2f4d89d7d0a29e799b0bf74c848ef4e58057ea592c7530c8b3 +size 75793 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-en-GB.png index 77b18900c..301b650ad 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7242e98600619c643c26116cc9eae2d2460c5ead54f83597a49efd3d71a6a0f8 -size 123664 +oid sha256:4e56096559d22251f6d1009bda22401ca8200adfe01e7f288c2caa4e1b959108 +size 123526 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-pseudo.png index 0463189ca..20431694e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:923927e36929f9297102dfbf79acf5f9b6478b50c1360de3a94bd8415ab0d9af -size 130494 +oid sha256:f324f332c0d1f356bf6eb6c0500719eae051426303adf17a9ba17f2eb2187e2a +size 130349 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-16-en-GB.png index 37f06db8b..9b9900039 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:603fbec0bbd4d716a64dceb713536dc283c6b2ff1b515962f8605edfa0556d4e -size 73150 +oid sha256:68c717b48205afdc2315d0680f41aabc002b87b3e1c9b14f82c05699b63e4afd +size 74337 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-16-pseudo.png index 93ca55fe8..4967e6354 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17c452e16ace5af6912162d78a478df2b93256ac43ec3ef27ccb90edd7d76859 -size 89771 +oid sha256:abab63fbc0a122d89023a7230577b3d3a139595da89d240e7160f9a743722fed +size 90828 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-en-GB.png index a4887dff3..d28b7d257 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:013ec0b571b107746110c21644b85af87a99215c8b73b86824c2b85e4202f9f3 -size 199506 +oid sha256:5a517216be3cdd15fb093331b2c1f86a5649367c55c7f46b0786a8f6df46ce6e +size 198902 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-pseudo.png index a82a9697d..a2dd7ff12 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17b57abc668cea55dddfd9ebade261cba716450178888fff02c74997a662ff04 -size 201082 +oid sha256:a930bb3194093fe19cdb3400ea7e294b04c938c893408ddf68144cb6eb108bf5 +size 200505 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png index 70d089668..ea1bd3444 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e52271debb9406feb7cab3354cd0fb127fbbfb4d8907980eb7cc5e758fa0bda -size 138423 +oid sha256:d85bb2ab56feafdd930f0c91e89c458efc130d7e97cf081a4d63843f4a44af64 +size 139408 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png index 7ca7d876d..bfd4bfc5c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d7bdadce4cedbf98f4fb806c62695ccfe22ee90c80504fca0250666f7d1f143 -size 146435 +oid sha256:a23a3d52cfef3dcca59a20d1d3deda415998b0cf15cba9d72cc89ca2aa8eff12 +size 147531 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-en-GB-0.png index 0ce0690d3..3f4e265bd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7875cd627faa43cb1af8dfdb5a6c3fd4f3a44f2174285d4d80a55660b3f94ee -size 172245 +oid sha256:c05a6866924c1dc6ed46c7c42439dd7edb47b39caa41ed3ea99ee4514aebbd9b +size 172188 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-pseudo-0.png index 2b0f7dfe9..adad6f430 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89d971a9dfe827bd58d45c9f1331e9e8ee3bb734194745b8b3819cf50cf350ae -size 175932 +oid sha256:6ddfa14daa481bf9b3fd5a84a0cada55486d626313c3049c338f640ecc7210f7 +size 175875 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png index 9b7ac1110..cb7d5f611 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6abff3b5cf7ce2495b08e8efca3f9153c27acc93f9de2ab14ccdd22b13faaf5 -size 115571 +oid sha256:5d7c756030fcec306f1708cbb1b1275661840c3649736590b4a777f0aaf28bf7 +size 115487 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png index 6ddf86825..9a24c36cc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ba9f1f6a2c1d2fe4def6a81373499d994ca60e63cc49540f5965890627bea0a -size 119760 +oid sha256:6658c53066412084efb6c2f9615c8d0519ba6e993ed88d8f1935dca8afbd894d +size 119683 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-en-GB.png index 8d43ff12e..d77c2250d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:962866b742a57861845c44677886a5c187973a05e96ea845101954efc63651ec -size 116948 +oid sha256:f98998b99bef84d6cbb7ceeae91e92cf7f2fdb27bf5d3b30fca868950bb60565 +size 109315 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-pseudo.png index 96bb23218..d3560862c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cf11bd211d33f4fab78632d9536ea09e690dee73e9140493ca516aa6d78d622 -size 121578 +oid sha256:4607ce87cdd6ac4ec9bb182d7fd8e3885b85b9ec5dbe7785d818904d95e28d04 +size 112831 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png index 45d8bfba0..832018b3a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ffb00a03c68b190b0576f8a5b3578b7994b51027af59c58948391915bbd6617 -size 68471 +oid sha256:e781e17b906822518f9fe3510b26191f01cc25d4c23eeca0b4821c6e914c7114 +size 62953 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png index c4fa14fb0..92869796d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe763263cef3c5e8c6a3a2443f06b79962cb6d790f6337d47f75a9894cd74061 -size 73666 +oid sha256:4838942bbe538200c6b8b9595bc5d566a3534dd4f3b7f31bfa136589b77492e0 +size 67355 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-en-GB.png index 0e16115c0..83faf0f9a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56d0c27cf4eb527e893dea03102a17ff64c74081f52c19ae822620b70ac5cc5e -size 92365 +oid sha256:8d442913fd704dfe8d5cbf38d3fe737b82e21c4e817e2b38d28991e43f10cb0d +size 84689 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-pseudo.png index c01ab601e..874942b93 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:039ad736aba4c54094f1d17613a37ef86e9ba53371dc6d5a5582e67a7407474d -size 100688 +oid sha256:8d38766231c7052937a68e44097333fb996659ada007e34f5e338883244f644d +size 91923 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-16-en-GB.png index 81ddf96fc..53af750a6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a917e84b45eb17ce4a7d7dce79fa9a724b6fedf0635c651b39b8cf36d4d22b47 -size 49025 +oid sha256:e47612a83be0ee99e3cb3b94b73b62541dbf4cdc9b4c0b4e034cb909b6f9e9c7 +size 42264 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-16-pseudo.png index c66092090..ed90fd24f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Empty-Banned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d421fdeb10cfda660c1bf2925b5000e0b2bc5722195c729fb1b032fa7fa1070 -size 59562 +oid sha256:938d1dabb2bd7c8f740279bba64efbd7a32754f0b5bdc760951921ef20e955a0 +size 52406 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-en-GB.png index f0504d37c..8c6045309 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de7dd0a25278cb3d850bb17745eabf73c82bb8de714de3176176ef0205cfda26 -size 155431 +oid sha256:8b9ba940cc6db7a70910a056aa60cd23de26e73e76f31537a4ea67d8083d0f71 +size 148240 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-pseudo.png index 08cb3c8f8..98188eb8e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a720efc67edbb7eb11b0a2f9bd85850729937f99bb077b0d08f7598484d9c6a7 -size 167197 +oid sha256:192b625e111007d795b18744d44b3d71395138f1d61cc5524eaac9f1c5372cd6 +size 158776 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png index f02e34887..cf12b98ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ce76f7eb6367b8ac122d77017907b08052a2d1bc73af12fcf5c5826a2de83f4 -size 101372 +oid sha256:15e1c89bc62d8bd57d787a03d46a6b7d06767a954e30dd8f3601099ece788b5e +size 95729 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png index 38f1f509c..c7282c9dd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36f0da3b02ad88aef6045288f2520866de1ca2fece50c302a3e79a97c414dab1 -size 112674 +oid sha256:bf154a9a79aae4c2bc38dcecbf44a2651e8517ed2de38ce69a897f93bbccf1dc +size 106209 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-en-GB.png index 2913e5cba..ce85bf192 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:536c5e08b44cbe6d3b9d1c2e6ec8b32d919f911ad5af09cf59d29a6985092d19 -size 158614 +oid sha256:9bde7637592fa5b227a681a5f33d803f46ee9fdb03b2a8af3c772896a87fd705 +size 151804 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-pseudo.png index d468e8838..cd909077a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea481ed68ee357f10b6f1777addad6d927c5de71f75862c7859ead98d6445ece -size 169472 +oid sha256:cde4392fb266610e8b476bc65d5673cffb17297934a5f7d23312b28a66ddf0d3 +size 161807 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png index 023d1cfee..812fb3709 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d163845228de4646f5ed876b5c44850a9f24a18a4e3f0d87c206b13e78e3b199 -size 104634 +oid sha256:4d58447c31aaee11dd86427d69069718fad7b8ab33b7d7c89d07f3b0d954d170 +size 99220 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png index fd6557f8a..b7f3d7827 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Invites-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df3c4dee3447725f3dd2cc5665a1ecde0a7816625eab674f39909d5578ebe83b -size 116454 +oid sha256:264175e1a572c47b2ad5d0225a3fd848ae65a9b31e85216aa3544275f2b79d9d +size 110450 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-en-GB.png index f0f7d1fff..5021c4585 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02637fcc5d6a92beb9bdd84e2ad1018f4021639bb03a159e7e940c5f36ab9093 -size 147956 +oid sha256:4e7f2fe3f057bc630ad50dc1aa6de82762ffac3086e5d24043d18c451d3fe696 +size 141184 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-pseudo.png index 419a9750f..2046822f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4964d2d39a3e8ede1c817d2b771bd12fa28e4678a9df81b34d509cb922e3f38 -size 158785 +oid sha256:0f6af855e9ef505885b66959faab69014e0ba2700b3230c0742db97f286850d6 +size 150583 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png index ceb73ba5c..dc0351e5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a52e8ed7e8a131fbd5a1453109a7741607a20eb9a06be07bc3a49a1363d05d7 -size 94960 +oid sha256:c93e32754d4d6cf7e00ed2cfd1f1ae76010e997e2b105d374f367ce9de38b4b0 +size 90308 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png index c7a6b7f94..5a205b1c0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListScreen.Member-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9781146ec5417aac27600db5e77f01002c454c58e3d1905ebf63d0e19710b56 -size 105019 +oid sha256:393e9b0ae3606186d3aac7081cb23e698a73e30827ee30e1647db27aae8b73ac +size 100040 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-en-GB.png index f0b4ea6a4..8dbf75b2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:105ba6af95cbf3c30dfc537ed42eda17619deb3699c3ad0e746ac6079ab00570 -size 105287 +oid sha256:6ed815048eda11d459f25e566606177e8f01ee916dd295f902a80740912d0065 +size 106173 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-pseudo.png index 0162e9c53..eae0fc161 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e05b426f841ffab9fc013a7bf2e8011c631da768df516c72148f3f843d30e7f -size 117705 +oid sha256:0d758161c2a98ca79a107fb404e4cb78de2fd6e39fa70c50328cc81aec2c0e27 +size 120840 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png index 83f75245a..d2be40478 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3343a5f858a69608f80d9f22d7392b623a6e04d557f84011fa51269a6a2034e -size 57792 +oid sha256:faa530e4890c50deda48e875839db3b1b117bcf3a22bf416901e6f45bb2f576a +size 61411 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png index 9dd316bb7..d5c51c1ad 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68bd89a601a46a26a0c5405e0a4ec5212c03eeac142f3e2c598a7a8de3b298c5 -size 78871 +oid sha256:1a01c959904bd30389c251f017085d3f44ba1b282dc340e292e57103f52b8485 +size 81597 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-en-GB.png index f0b4ea6a4..8dbf75b2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:105ba6af95cbf3c30dfc537ed42eda17619deb3699c3ad0e746ac6079ab00570 -size 105287 +oid sha256:6ed815048eda11d459f25e566606177e8f01ee916dd295f902a80740912d0065 +size 106173 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-pseudo.png index 0162e9c53..eae0fc161 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e05b426f841ffab9fc013a7bf2e8011c631da768df516c72148f3f843d30e7f -size 117705 +oid sha256:0d758161c2a98ca79a107fb404e4cb78de2fd6e39fa70c50328cc81aec2c0e27 +size 120840 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png index 83f75245a..d2be40478 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3343a5f858a69608f80d9f22d7392b623a6e04d557f84011fa51269a6a2034e -size 57792 +oid sha256:faa530e4890c50deda48e875839db3b1b117bcf3a22bf416901e6f45bb2f576a +size 61411 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png index 9dd316bb7..d5c51c1ad 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68bd89a601a46a26a0c5405e0a4ec5212c03eeac142f3e2c598a7a8de3b298c5 -size 78871 +oid sha256:1a01c959904bd30389c251f017085d3f44ba1b282dc340e292e57103f52b8485 +size 81597 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-en-GB.png index ee0f31b09..524b396c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff6821aa7b016d3196ab5b67f8ce7aaeaf1e2e39ce4d154b3212dfda4fcb1630 -size 107567 +oid sha256:992543035d46c0e56f36067dbe052a2ea764c207c067c7d51d687fe8add91d2c +size 108397 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-pseudo.png index d16b2ba5b..489c3083f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a361d4f41649aa902c38e3588233ac4865176d77a865e999b6c8270d11dacf2a -size 120055 +oid sha256:78a8291f89eb52adb4c69a77201417a1e9c85d937d6b47a666f8a2150c0f22da +size 120523 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png index 2d7b1d0ed..9e9c93d0d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f91b632384566fd50dcd5bc743069b0fbb3740af96610f552e6753d334b14bbe -size 56583 +oid sha256:3cc0482ef719be370cd7eb80ef6b0426084e0d97c9ea53b897e1623f1bef2392 +size 57506 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png index 4efec0b98..9ebec620d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21da1b2b2e85252c3d12c1b5418da91d32713e3494b2e02e0b12a63a0a87de42 -size 73469 +oid sha256:7912ce48739b830f3e7d02bd4778989319d94f9c86e1b35cba6dbe841e2518f7 +size 74071 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-en-GB.png index ee0f31b09..524b396c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff6821aa7b016d3196ab5b67f8ce7aaeaf1e2e39ce4d154b3212dfda4fcb1630 -size 107567 +oid sha256:992543035d46c0e56f36067dbe052a2ea764c207c067c7d51d687fe8add91d2c +size 108397 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-pseudo.png index d16b2ba5b..489c3083f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a361d4f41649aa902c38e3588233ac4865176d77a865e999b6c8270d11dacf2a -size 120055 +oid sha256:78a8291f89eb52adb4c69a77201417a1e9c85d937d6b47a666f8a2150c0f22da +size 120523 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png index 2d7b1d0ed..9e9c93d0d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f91b632384566fd50dcd5bc743069b0fbb3740af96610f552e6753d334b14bbe -size 56583 +oid sha256:3cc0482ef719be370cd7eb80ef6b0426084e0d97c9ea53b897e1623f1bef2392 +size 57506 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png index 4efec0b98..9ebec620d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21da1b2b2e85252c3d12c1b5418da91d32713e3494b2e02e0b12a63a0a87de42 -size 73469 +oid sha256:7912ce48739b830f3e7d02bd4778989319d94f9c86e1b35cba6dbe841e2518f7 +size 74071 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-en-GB.png index 093945893..d579bf3f0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8eada31ced3ef18682a5263f00ea0c8a2858861e1064ef39583d03605ef185d7 -size 112203 +oid sha256:7b68985a43020b9ecebde148d2e7d43069407a4c9380d925fb8d6f215279f5b8 +size 114185 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-pseudo.png index cac0091d6..9d72c57ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b01f78ec4d3202cd7a87e8e4128a2b29a9cc7512d2b0a376e308d65e4556ef6f -size 126409 +oid sha256:0052eeaa854b028c8cf1bf03ad6bf14633ad6c99c9e0cec1617289b332059076 +size 128344 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png index bde60a39f..8fd41afae 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:513330c61adc4081a6f95791ffbef37a9c645738a83ad02251749dcd43335c73 -size 64180 +oid sha256:d16ce80d7de577a1b475f1a581ccff2d098347d332d60dff4be81f8d0f41a996 +size 67916 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png index b85a19abb..b5949f2a9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4716b36706cb5f4d5d644f8d90ffbbe7e28c9fa8954a4429fad1cfaf3ff94f45 -size 92277 +oid sha256:4b584348c0182f5e0a0e456af64a3d16cc175c5d9954006fe6e01b65cd84130a +size 91575 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-en-GB.png index 093945893..d579bf3f0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8eada31ced3ef18682a5263f00ea0c8a2858861e1064ef39583d03605ef185d7 -size 112203 +oid sha256:7b68985a43020b9ecebde148d2e7d43069407a4c9380d925fb8d6f215279f5b8 +size 114185 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-pseudo.png index cac0091d6..9d72c57ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b01f78ec4d3202cd7a87e8e4128a2b29a9cc7512d2b0a376e308d65e4556ef6f -size 126409 +oid sha256:0052eeaa854b028c8cf1bf03ad6bf14633ad6c99c9e0cec1617289b332059076 +size 128344 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png index bde60a39f..8fd41afae 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:513330c61adc4081a6f95791ffbef37a9c645738a83ad02251749dcd43335c73 -size 64180 +oid sha256:d16ce80d7de577a1b475f1a581ccff2d098347d332d60dff4be81f8d0f41a996 +size 67916 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png index b85a19abb..b5949f2a9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4716b36706cb5f4d5d644f8d90ffbbe7e28c9fa8954a4429fad1cfaf3ff94f45 -size 92277 +oid sha256:4b584348c0182f5e0a0e456af64a3d16cc175c5d9954006fe6e01b65cd84130a +size 91575 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-en-GB.png index fc81b258d..78936b18e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:daf05618a2102da64b7803d3b66cd57ae0d033043052304e981064504fc3fc99 -size 97456 +oid sha256:1ddc69488820c9358918a37c5cdddd5d3c4c501a9683d092c0362b5630a61964 +size 95907 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-pseudo.png index 2f1d8e87e..acc877c4e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a70c50216525a5e7771270d6027db2cd1c4bb5ee141bb4db0217009f5b0b0f01 -size 104839 +oid sha256:f8cc3c20020c49314fa8d40100180e153bda25ba128cb45db1f90da73be390b6 +size 103244 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png index b794f2e7f..cd255cc5b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1f2e025aa980b2b6d6c7a881f59f564bfae1ee77277368445ce75678a1e61c9 -size 49841 +oid sha256:476f5c83349a3171b4d220425a9df401a8f00f0fb38fed5cf04693017681bcdb +size 48614 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png index 34999d1f0..3e05b81af 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af5a4cfe751f9d9edc382354f5f73e60dd71ed01044d63043642c4cd78c5d31f -size 58348 +oid sha256:ef67a9bf0cd865c1377dd5157bcc4976d617ab5cc088510a8aad5e2ab7f0e771 +size 56803 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-en-GB.png index 92250ba53..7ff726587 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ecbef3bfe276f9b01869d8df25712cb3886857b4d6be1f4433cb734245d78ac -size 187525 +oid sha256:1f54de58fd56dd60957fc6c31d21308ccea6ca0cd3a80e0a235aae9794bdafe7 +size 184117 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-pseudo.png index 95d2312a6..8cb8c1b61 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:367cf7e2748ea7fc54bc9878453031b6ed405a882c1e4f5d7b8794ad5ac52eaa -size 215780 +oid sha256:42c8c12b4be5744e44496d0d08aca2589aee063b8334acf223ba582775d87cd8 +size 213176 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png index 9144eab15..b14725add 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45bb71015892e96b35db80520beef1b32b3728dc51e32ca18f2e753ced7ca6d1 -size 113803 +oid sha256:1ae87c0283c1d2079d2a4c3a65ae1b9aeb60b4e35044fa81c495e6ac13df02b1 +size 110671 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png index ddbcec1d0..8a37b1112 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomPollsHistoryScreen.polls-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a395f68e9bbf3dfb59466e687b5a1649175cb20e52a5be16ebfc3dfc1fd23204 -size 139588 +oid sha256:524ab6e647e54eaccae73ba51dcb5119bdf93a633d3bd09292b6a12c6fafe685 +size 137596 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-en-GB.png index 428afbd66..e13a3b349 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23bb2cecf113ec3aba3140ebd0878223961fe1f5434918ebb18bb1e32a772b23 -size 133839 +oid sha256:1a00292ad8d4505032a3d01513dce12aae2c293da23fda3574722b8d8e2d3a93 +size 138031 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-pseudo.png index e040e83fd..6a805f953 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13d5d6ad6ba12c96a7167c0506fd4dfb89f7842b10e054639850ea2720d76ce4 -size 142525 +oid sha256:5988891bea76914299d1a2bb007026a8fad1b4b639d3d9b31541996b7599f7ff +size 154346 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png index 5765c4fbb..6f7c219e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8febd6e5518b1788ccd730682bf04bba06f9f95b7059177c839da3c79fe97a7d -size 83439 +oid sha256:69bb6a8b897d984c915d624ec4f95576dfe06a1a3e81a122da3aa42c6ce30372 +size 88477 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png index d7a70e000..48654fe3f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Admin-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6167d59ec1938ed2746937b23a0dc1f944c213f2a21dd2ec87a9a62f7d743485 -size 100582 +oid sha256:a0179fc9f96159c014b4fa7749ee966145b5049ea618377975a1fbe91daade36 +size 106357 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-en-GB.png index 56a8f705a..1bf7669dc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c89484df5502aa6935e8c6babdcceb49b6701fbb4099437046bcffc22764ec1 -size 129589 +oid sha256:46661b30b5803b3cab57d8e940035fc68e8df4b5ef0a38268a798f7afdd853a1 +size 133564 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-pseudo.png index 9cc193b4c..2cb7f0115 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:206708dbbb48e6f68d21b98103fd8600ca595395b0f3695a28560bf48a4a7ff8 -size 139089 +oid sha256:e4c2393fd44e2e7c9cdfbeb37661163d2a72f7d952685d4ae71e0e8775ca2f87 +size 150648 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png index 864a3c0ca..f6d64e66f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42f5682c78a9786db0ca354c284b369d666cec7136682e82edc01922d48a2d68 -size 79075 +oid sha256:64a2fdc6e5a513f57cb6404d65ef9058412ec4fa6e1307451fdab207be91dc98 +size 83654 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png index da4d97848..e6cd3d3f4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomRolesAndPermissionsScreen.Creator-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df0d7583c6493dd81930c92f23c74e60467743a94bada42ecf6fb17121ccb117 -size 100746 +oid sha256:1d1bf550193364b0ab1fcb59132bb8819bd7d3a9ce4d48f4cf13d0208c0e277e +size 105256 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-en-GB.png index 2abe3a95e..e03977dc3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:072123b9dc8efb1766a0473bbaac4da41ca3753c498414174f7ed4498c7f4323 -size 296283 +oid sha256:71dea1c6708803b8f94ef428df31d6a788678ca2459087aa68f6842bfb406144 +size 293192 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-pseudo.png index 734e2c32c..6aab55f8e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b5603abfd37273553075d1aa62ef6dae6485293e740481d3f9cc0892b53c069 -size 304438 +oid sha256:e92403f8951eac64c503c938d35958bba7746b03406ebfac79f3fa49b68ff8a1 +size 301279 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png index 508a4a72a..d57ccffe2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c31f30c2bb523cd9287eb7170f37db685e0338f43c86a20593df71e9b39a406b -size 181787 +oid sha256:6b25156145dd6a5487b6ab573232afc9e51177a259349d9658b833dad0a100e1 +size 176510 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png index fa1c0e06c..7edcd6b94 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1918575107e893df7a5c8d824e7d84f193bc95396dc9a70befb9035e2c15cc69 -size 180198 +oid sha256:c0a4a8242ede74f4dd53bba37fbac35ad5fa916bcf2a01ca03770f9c0878a06d +size 177246 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-en-GB.png index a221ce13c..0d6cf4566 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30073fdf3797dd70a1a9a39301e355e46d78ce4ed064215e2222ea1e3ac4eff8 -size 296108 +oid sha256:f16a9c9cab2075dc1780065d40c4689abfa8230747480d949ff1c460094a839d +size 292578 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-pseudo.png index 90610a2bd..77e3d2529 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c8f9d9ad5dfe6a949e392eb6a2014a26fa1c99dcd1609eebacf9fa3129f1ced -size 306552 +oid sha256:393017a92fe47ee1f1b0eecae032755087fe0a4f25f1a5d8dada35380a0f336e +size 302881 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png index 0548763c0..fe8a07fda 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcc07c762ebeab3cb9de5c0e516fb47704a7309e28c6bbbd335e07692e55ccfa -size 182334 +oid sha256:aca34d117c94aaec9c1942303be87f4cc77b776beaa13e2bf0bc334cc733e796 +size 177129 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png index 0cf332c45..08b3c8d37 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc29ca8433a626ddd150d7852483179592bfe060f6290e6b94820b4b59544eb0 -size 184921 +oid sha256:322d9699ee9ecc426ed4d6a9183c6919d55618dd3d8e9300205470a372bd8205 +size 181234 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png index a5e52a1f8..75e784417 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19d9f9cab99ced9465837f49da0ecd3c0a08f4f79d8ad33c2b685e9101b257d5 -size 355287 +oid sha256:997ea3ff8e1202577bc83f930b4a8c7e699894cc030b1d8305599f092a97ef61 +size 353670 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png index ca7f8a813..7c641591d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:873693eb4314de3e8fe5797b422bdfca4487dc20875cad82d1b3354ef95c0831 -size 370284 +oid sha256:a092d6447cc5e0eea8c2a3b8bcba86b1b1e88213ba9f916bf59afa9731ba0478 +size 368591 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png index 1f2ad04ae..42da5ef4c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1cac8ccb886a5c7279b34078f5188d28ea4eb9c6fc1d9e5763e5475339c0e390 -size 209235 +oid sha256:21996a992db589e07c5fd8f1a339ab8a8533a1c88b2c61f94a38f97d36b39157 +size 205753 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png index ea8f413b5..cc33a8de3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:184f7913f0502d735a942db23e6dee7e47f4034329f8695c15d293b7abf6bf40 -size 220628 +oid sha256:ba56dc588ef7f3fe7c77d97db9dcd4619b87f042f055878a994de759c254bb6b +size 210914 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-en-GB.png index 43e0f56c9..45b61bad5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80fcc3ff5fdf0ef8620b1a7778922d77b276729e989b286d74d8709c00170301 -size 158452 +oid sha256:3e29c17eb8194f0891f38be5cc3d0d0a763b30f0585ff76840b2d815eb666184 +size 159189 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-pseudo.png index 414eba918..ebf4f9ce8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5cd23bd239f4e125a9a5f3e1d1be35340d6b1f04dd00a447e41e66bd734a6c8 -size 171300 +oid sha256:70ae6e1e72b353944a983c844e50c558b633054be9a70b3f060556ed706e600e +size 171159 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png index a95db3720..d4d9dbcbc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02a02dcb61bf5d79bd97acd9697aac30b953d8542e3286a2920c328f947e1fde -size 77779 +oid sha256:b01a854bc7ce7cd3b79438447ee42da11848ab1b2112fc3a91f2b0585d3314d2 +size 77525 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png index b310d510a..c92948960 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad5ee6fb1154ea9d3ff3b8d3d529f9d8203c6ae89cf16f3584caf34b9d91e9d2 -size 101924 +oid sha256:861f0e6326fa459ca089222b5ee0f20d2a798cd03babca682917650a536b4995 +size 103292 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-en-GB-0.png index 606007272..14743a36f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:348e37e04af9dc3297e28c01a33176594b63d01a701f16a1e3278666d4ffd41d -size 167050 +oid sha256:b78ab3f3a28b3c337f94286457a339b8dce3b2fbe8f8b2534fe315d474d7dfbe +size 75368 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-pseudo-0.png index 30748b21d..8702c823c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29acfd6916630e8a47dd3fc51eda53a0f3fbb0af609a72ceee08a7db5dec2396 -size 168533 +oid sha256:14754a7d36c9410ae5a650b8484f9c55c67f7d07bb528dd51c927a36485338d0 +size 76814 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png index e09e15a6f..2275259d7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:993b6d680dd7fea259ab9debaeb45e5ee4fd58c0f029f87446692f5010eeacf8 -size 114591 +oid sha256:d97f313a4a4c6198b38475d6f8b37bca15843f4bd0ce4e63e95ba7317b07d773 +size 117631 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png index 7f0c6f910..e01b2e2b4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8eb5e58c5cdf0000578dbb5cf2185e80ba1bbf95e418b29bc850e9ba5eb05864 -size 115891 +oid sha256:0f3d4426a8785a1210018688171495521f78b3f0c85f354cbaf8cc3c6552b552 +size 117918 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-en-GB-0.png index 420921eab..295540fc8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49094a594b13cc5b0308b4e81f53ee88a36c4179fe78cb8b09fec8e7d99cb2f1 -size 67159 +oid sha256:a68f9499c9da66b6bbba1b6317aa751ff84f8bbdf9402d4fa5810af643318266 +size 67019 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-pseudo-0.png index 420921eab..295540fc8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49094a594b13cc5b0308b4e81f53ee88a36c4179fe78cb8b09fec8e7d99cb2f1 -size 67159 +oid sha256:a68f9499c9da66b6bbba1b6317aa751ff84f8bbdf9402d4fa5810af643318266 +size 67019 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png index 10a8f54e9..ceebe9d85 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8bb905e5cc50d1ebc474af6f79c3ff07f1d3222d1cdaffd5455d35b3ba57211 -size 43903 +oid sha256:5b19a6edfd0ce4ed1182ca5e8c1b6af8b2f0b4fabf19740e64b386b0e7dfcb66 +size 43756 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png index 10a8f54e9..ceebe9d85 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8bb905e5cc50d1ebc474af6f79c3ff07f1d3222d1cdaffd5455d35b3ba57211 -size 43903 +oid sha256:5b19a6edfd0ce4ed1182ca5e8c1b6af8b2f0b4fabf19740e64b386b0e7dfcb66 +size 43756 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-en-GB.png index 4546d2283..ecaf62025 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b0bf60d9837f64a4772a1231d2d5db4364389ec9cfb30447a2c6882f39d90d0 -size 138920 +oid sha256:6bda96bfe911e6a09c8ed5c2015e5054b89c613777e6ccaa855c38e974665ecc +size 138950 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-pseudo.png index 02575c25f..5109cdd1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11e7b0ee6ae45eb8d4e833690be8fa736cfee9575280cbceb35599cf0e4b7546 -size 194144 +oid sha256:89bd765fa6bd74450f5ba2c695a6e533796d10c62af0de4c21d370b628d7c2d8 +size 194463 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png index 6056fdb80..3482ce147 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b67241f76637c0e69cd5fd4ff5cc60dd6df0f0b08a47ab036c51b30403d60ac1 -size 102879 +oid sha256:c380f56720673635ef93d026a2160c30a9ca47e3612773c53c20fd6e751373e6 +size 101409 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png index ef947d9b1..dfc68da3c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b15bf74f9d964936ec14502245ca9b11bd14f2070e7ee023a9b4e1ca1985bc1 -size 160217 +oid sha256:0097ea3914f98b9eaf7bb094adec2272b4c439498dab8fd94b3d5237a5d7f5e5 +size 157550 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-en-GB.png index 739e74935..edc8b3f89 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dba585910e1c14f2a89f2695d337da793f46e874921b268c2366b60be49f6d91 -size 107822 +oid sha256:e8821e1d5bacfb57b2b6ee315cdb065a7fa4ea1b89b22da22852127fbc6b51a4 +size 108151 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-pseudo.png index 10887b8ff..0a4af2cfa 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:740be35866334489c45605142d3ea9205ec7cdacbf15e090a44861268b841f99 -size 130383 +oid sha256:a8a6c4468a6167c80040885173a98e915cf2173cf00d2681d081fb34308f2757 +size 130408 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png index 544b42709..3a1823144 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:683a0bee50d913a1ab871393d0e0adadb27125fb8abe8fb6fbc93cb16f150865 -size 69094 +oid sha256:f0dcbdd02f44bdda1d4d3fbfaf31c4e82f70244eb640ada7f9886a0dc398c398 +size 66583 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png index 7b94b9b10..3d098beb6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b100fa5b4141780bd1267c41c94ec8b494f8199d0f0c9562320571063ec15e7d -size 92719 +oid sha256:265420b105cae1c708f16160b948dad007686ef71131d771fe72d8ae401f5dba +size 89508 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-en-GB.png index 6872f2c06..d0195fd8e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39046e9a12f5fc1a3919d41bd91c46bd5cdb767f4a6c5e5445d30afb11b2773a -size 107286 +oid sha256:b8d34cf2a674a1f5c52283c3c2b863e92ec684d360ac8a223e5f7448c63f7fe7 +size 107523 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-pseudo.png index 5d23719a9..e93e48f5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20d4ee29d04524bb41bc2ebe8603b60113b2db38829aa21d0341b8db93ee33c0 -size 129744 +oid sha256:863c3a21e0dea23d30cede60c977b0605f10aa20b46a1f41a064235f42f1d369 +size 129771 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png index b86041115..6e81c81ea 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fd633dfede30f4f1967b339969ecae518b7ff94397f61cb35dd9729afe5db8c -size 67692 +oid sha256:b05c0e5d15aa9ebb4286818f0df8c4bcc2ca9b30228d44a973906cdbe97c3e02 +size 67702 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png index d21feca70..550944566 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af96c6e11b09cb65fed81ee0cdb2499ddc730e009ae49d25ed097d38dfc36906 -size 95754 +oid sha256:4b395dff7e0938271ec760475d87acaf160ff78e3bac158aa4a470d7ef5b06b3 +size 95779 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-en-GB.png index 9608fe936..017e5c9ce 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37b4122e8901ac31e83e1365b732b6b396099ba9ec57f3b8c634ad24f86e3246 -size 96818 +oid sha256:55031bf666f09bad5bc5804ae4836f3225bdadbdca47c4d6fbeedcf7646fea9d +size 96863 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-pseudo.png index 0b601ee74..41315d351 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ced95069e7722c920710f58ecab7083d04267eeb1280963be90c256a35f746c -size 111272 +oid sha256:f28ea12bd1b82450a7f4eb63e9885f023954cd9c66bfb98a0394f23d4c52d82a +size 111448 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png index 8c1270115..d467229c3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b043c9f56f2428f19a9559fe203494c2173c0668dcedde7170a01bb4821659d7 -size 56840 +oid sha256:83a8a3a5d3c3a6087d6b0f74078c685e957dc1b2fefb456612ae278726e17d61 +size 57002 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png index bb6574a8c..8c68bc1cd 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0b304b1225cfc10709d5aeedb3ff786529f2732ac6175a8c272af204347eb21 -size 73926 +oid sha256:d009b82e54d692cef310d54e649f988b57da5451f92d8c3c5dd5e9edf1dd4b3b +size 74032 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-en-GB.png index 9e3bffcff..35d91e13b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:883d50912a3ee862ff5a1aeb021b90acfe5c7f9a1ea38b7a8d641fc2c9b97135 -size 102578 +oid sha256:9aa41b748a81b260c3b8bc7d292246f15b6db53315a4a6701aad8a18b1da336a +size 102620 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-pseudo.png index 10e5ebb22..dc3315936 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1cc58bf1307f799af1123ff39f3892c25622ef4497fd311d98a934a14522fe3 -size 119454 +oid sha256:eb5fb1cfaa7353baf5ed7e86c1f7270b1c1ed87cc9835fa216c3010d5ec61aa7 +size 119706 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png index 05080ed80..e7881f506 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9f0c02213afbd96a276c892aae0c4653bab11474aac84fcf90ffefe3915b84d -size 62047 +oid sha256:2ef1993dc82f622e9a0b6f1716d4fdb84c1f030fa6ec7b9e1945e0131cd7ee57 +size 62127 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png index 8bde10c8a..f52179498 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a355135c6d2bd66ed5095db5f46e049dd8bbb11900438831ea7f96729266a366 -size 84881 +oid sha256:92000693ca8f02c9eb8fb90783f20cc2d6549be1ac28c3bcc94dca77d5152784 +size 85007 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-en-GB.png index b5b14fca0..d51875116 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10789d07eadd5663eadfd30b94ea47fd7582d2a1271abaac2fe2fffd196225a4 -size 96967 +oid sha256:68223f0e7b82673829794922bb7c5708e5966103ead50ccb733e937f45daff90 +size 97058 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-pseudo.png index 03568ec5b..f4e6c2e0f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dafdca213b100ed0b437da3d2284292b9970d66893fe61c3d7449f75149902eb -size 111311 +oid sha256:5cf3475488953d59e0e276114058450c31e71410ff4bc88ed5d5a7c1be2d7fc9 +size 111487 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png index d4cbcc6d8..63ddac6f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32ab41ac97af657e04f05300e8b4fcb19bc6976aa62cf8de9bb4d5e8e0b9bc09 -size 57148 +oid sha256:f5d22c49c18a42bdea387a14247c52f7b3d5af690f5c3ceddaa7e5ae1e07615f +size 57282 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png index 12ff329f0..faf1548a4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40562f8e1462d6cbf4b862e32d707aeecca62ea708166834e055d28431dfdb3c -size 74118 +oid sha256:28808118f12441c5f819969c0d7e1e4f0f74ade89c6ee1a605b766c9087ac419 +size 74848 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-en-GB.png index 9f23bce53..e2a4b7c2a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc3b238474cec6992f30753ba4cf5d401fbceab5a54cd20a195aafa73777c2d8 -size 119066 +oid sha256:fd6948856380a56891f1e42231a5235978b112d0048a503af802d3d753a68182 +size 118930 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-pseudo.png index 22ffd7f46..6d097ad5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9d1592469b7dff7da43549d4683c8698948781cb464a9028d4b4c76fec59ee7 -size 142894 +oid sha256:c427e7859f5af375ec1191455d1a67c57d872b24983ed64450dae713bf739eaa +size 143361 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png index c84f06193..f754b77c5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dfe24cbff03ade23c749ee55237fc7a3ea7472db5ab5fae9550ed5b3a81260c -size 76447 +oid sha256:4a91a7d0348ac492da4fac8f8b157be5c065b84912e829d372cda747775cf040 +size 74001 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png index 7490bb38d..f515d5373 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce7efc3c5c04eedaab23c322704fea5b74eb28688a1e3d05b6a6550d053e3d81 -size 101850 +oid sha256:69dbc6600a54410ba012a18886fbba3a6c7ce1addec066af755311adebd781be +size 99647 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-en-GB.png index 73d121545..e0a76c2e1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78b7204fa8eade1cd40cc39222c1c4551337bffe3d2fb0b4d119a3a1dca4c742 -size 104236 +oid sha256:54b7ceece648a782245190055ab35ba9f52dde0fb2c5e68bd9a167977b05384e +size 104174 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-pseudo.png index 3ec91a531..756a828b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da1377b1292bcb232e4e9752af1ad2fe4dc60c094a264874718999f56340a48c -size 118088 +oid sha256:f3b1922e4d5a90375cb79c9ee18257fe0b6887a3da2a727e8748d0a6d55ff86f +size 118129 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png index de87ba4dc..80c2feaa6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dee909f69662bf4443cee34c8bc2dde0898aba4ec29983d223305059ea07eb53 -size 60677 +oid sha256:82ab5dea6c8b05536cc836649cba62f204a3e8546294b50fe71d4679293fe334 +size 58128 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png index c2ff0e5d7..d5b2bc45f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a586a437267d0ee3deb71f93c18092288c7a9c2f9df5ecfa7cd383ace2d459ba -size 80914 +oid sha256:e51831f2aa4edafabd3cd087421a833530caf7939b275c9c63e543c38db664a6 +size 78191 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-en-GB.png index 0e44ab657..431eebda0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ba7ba21ec91f5795e7ab51ae0d933691ec018a03ed162cadf7133cf926d7288 -size 120912 +oid sha256:8dbaab8c2d6e49042e9e9000251f80c2cdc6ad2e1a7ca38ad2e709ae1de726c5 +size 120834 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-pseudo.png index bab1edde6..dda4d2d85 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4637954eca8ea4a549e4bb01994b6f6b9fa085c4dca9f027d135b4c40f24f51b -size 147077 +oid sha256:43f3c15889b3b7c6ac80c31e7c6fc329e38145556d8ed214f2f57beb1516a635 +size 147735 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-16-en-GB.png index c1fe70c37..96f7f8a6d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f6e29be608874556a6d28e830586be6a33f05537cb3fda243b2663aec145779 -size 77953 +oid sha256:e3d0ef83b1ad1eceb8397ca30f0937f117a2d5675498b45b6bd1a87380fb0511 +size 75539 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-16-pseudo.png index 2f75cb738..81dc4e7ee 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f171981a79e27cfd8915386300308f4957970668e9759423b12adbecaa04a82 -size 106739 +oid sha256:a7f7c4638d096e405e04fd0cfb4e44422bb5a3169ce4d316d097031e65bf61a9 +size 104472 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-en-GB.png index 7f4ac750a..e6128f9ae 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd63a2e0e143a68d246b242b25947bf5e98441f8f4e745feb5db9c664750fccb -size 138653 +oid sha256:652613f85f8a36fdc783199fa03bcdd54141430582dca41e5638b5d2539df46b +size 138449 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-pseudo.png index 2fe3bc14c..808f82138 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aebeb43ecbdbe6d87a37a7b270b8456318c1d42193e4246a2b4dcb874c71e9c7 -size 164356 +oid sha256:3c02d12d3ebbe359977edeb7772eccb007d24df5d69806d309cc05f0726a1bd6 +size 164578 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png index e3085ce52..aa44303cb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8fe403f0b79a41aeb3fb6641b340792de8285c82484ff70c9306a8fe1a5606b -size 95749 +oid sha256:84da6d6eddb36489b28c5f20f05a86484585f91f8b4b1c2380e5487c9be591ad +size 95734 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png index c42b01c0c..51f950418 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fd372f5f526683936cc0cb6f589f8664dde4bfc41b73c9414050de563e208ef -size 124397 +oid sha256:86f8c7be91757341d002f29aae277e3b54afd9f21a3de7d576e3e08564f06a9a +size 124454 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-en-GB.png index f1dc130f8..c6faeda24 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c266ef330772861517370e61d45307fd1f1d7decf60be752ae487b75a307a474 -size 78051 +oid sha256:bcd1526579af9b817b427008e289397cab4884954ff87bd4156e278b6346e87f +size 78117 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-pseudo.png index bd2a41431..33ffac5ab 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92ae11d1e0714ec565f6974c4a954e49f794e73938b5bce0f954051c67385a4a -size 80696 +oid sha256:5741bd2c0132faa7af89f50e282095207b46e4ddc3f6e5234b5e11f5198f8dca +size 80771 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png index 55df4dc6f..3da1076d0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3001d5cc1bb0e8b4def3f92e606f6ad697f7ed60c1cf2340273d2260f94ab98 -size 37541 +oid sha256:6282ec8acb4060dd63116e03a600cf877b8445b03b0125682a7f6a5285767ae4 +size 34893 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png index ddeb3282a..01c75178f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95ae936558343147fbeaa6a9c1902e5c9232d84c34ecc268bd1392ec12ea07dd -size 41874 +oid sha256:25c70835d13ac8d2ea02ea416eb13ef33811384464a98dfdb0f41d3b7f26e8a0 +size 39042 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-en-GB.png index 1d7c7e772..763fbb48b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14a13aee30c8c213ebca9761572fb4738bbe3f4484c75dea9221c8d73c854bc0 -size 131507 +oid sha256:1cd4f5648c6284cd67f6ec061924b6f60c9ff0d0f9f96118bab2c33633c6d7d6 +size 130362 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-pseudo.png index 0076dca74..8a1086a50 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a1e38b66d9753e72b4a1d8ae3a731ff4a7444c5307b86e310c4a1d0fc1c7c20 -size 161080 +oid sha256:14a72120835fff234d01ebf5ae687dd6b263ba008b3cd752fee4d7f39d0dd47f +size 159291 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png index f1b0bc1f4..8d56dac50 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6655be590373f2c8369f1c1f6ceacada128898b8efd9a7cf0610e6dfb7045fe -size 89465 +oid sha256:4cdd6282278ee431151cab6541841ca79baa07b78203c4e4a4c6dc1a5fee39c5 +size 88970 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png index df186ea21..d5b90623e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Both-setup-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4a8cf87eefd325541e6ea96b084b4394592e1971d5a9deeb96fa1712c315af9 -size 134687 +oid sha256:257349777d318a3d3e8db5802f3666c3eea4fafecfad95c14767db0165de6d45 +size 135798 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-en-GB.png index 7778ec1bd..292ed9589 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3eefb4e846f077a2ca7b8297c505f780e7a604e7f9116b71cd1a9883113ccd0f -size 117078 +oid sha256:6ab24b46c4de587ceede510a0f85c8251d088cebae68ce5309a7c616cf4df214 +size 115494 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-pseudo.png index 488cb1f4d..85cffdc6b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f687602f97c449269d2634bed2b9f81a85872b6f88364a96c52521729a222d3a -size 136021 +oid sha256:ba31d201935d51505a7ec58e37c272e543b7692783a139f293442d6843f9a1b8 +size 134985 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-16-en-GB.png index 1fc232f4c..d3c68137d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5306c7452d991aea79d15d23f0b0c5363fd250d0eaf2c2e3a39d0b48b0f7fb7e -size 73582 +oid sha256:6abf68ed444539f7a0c6267b123d44ae4bd1430676cd702acfa9256e93b703df +size 73082 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-16-pseudo.png index 2c5b8fa18..5a3dcf3c2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Key-backup-disabled-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71b3bee5ed6add6cc6e4463be8b9099b47acc6d9c0b40dc26449efe2531d429e -size 103402 +oid sha256:c3457ccea6d9452ea79dee77908ea54be1435625a81ed2bbbe284eca1ee2e40c +size 103628 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-en-GB.png index a8456a0b2..6f1efda3f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:939df251750d7374650131f7a9a699db74d18299c7cbd1c652f6b1b4feb46879 -size 130567 +oid sha256:c28c8c4bc77455adadf427ba2628612676a7fe724d93f4f007e6006d69fc0a85 +size 129378 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-pseudo.png index 0f3f03fec..b99ec46af 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Only-key-backup-setup-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:485a2af9afcd50038ccf840e66460db7a6d997d155412ce699560c716729f3df -size 160019 +oid sha256:3fcef43c3e6673b991f0dab58296e9faab4f6bcecd36137538e28bbfd1def899 +size 159558 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-16-en-GB.png index b63137965..dda752f05 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:174259bd57f5add2ae34b684b17c551415fd5ba1684e7f0043f86342868c1bdb -size 89705 +oid sha256:7f679bd69912817df3d4ca1490d2a7d89accc9a20d3c1b4892a8f080b1dba42d +size 88960 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-16-pseudo.png index 692d3a7b4..5d66788c8 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:87710a6065ef02bc45eb89780cf6aaef13f268852515f22d848f105d16ce9842 -size 134108 +oid sha256:09155ec3d8632ced8547b5b0bea046fa6770f7623fba086bfcca510d6b1865b1 +size 135379 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-en-GB.png index dc360e4a9..1743e11bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1074a4fc754d8adea55068deb0371423986258a6a33052983360a71d26a08c77 -size 91504 +oid sha256:fa0cae6dd6be61b4f2b089dcdfa21cdf5c209ae95351c690c66f80f9bbe0b742 +size 91651 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-pseudo.png index b9e4afbbd..1b5b684bf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9e29742d2bd0b51b691f90bcda2b3575804ce4bdab3cdecdfc5b80572edba53 -size 96179 +oid sha256:8e4e6550043a82e7f2c7fa8abc531a939db0a95a353748c6bfaae11fe3420c0d +size 96682 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png index 72dd634c2..de5303784 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9634914eb74dce6716f80606d010fc3f32a25f84f8734c42db5944dcbd41e4d4 -size 44940 +oid sha256:a9c8d7ac3c44f864d4088e58a0a5255be84cfedc04d5417cbddd98049204a8ee +size 45234 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png index ffe2b6855..d95eb12bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0aa9d066e4646d6f0dc322d02514343fc9677a5ff33b71c1c4171063ccb98a1a -size 52909 +oid sha256:328ade7bc27fdca8b6faf671169f320105898c5fb2c9086c109026e5ee5de4ce +size 54024 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-en-GB.png index 79b513071..f6c9000d6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bbbc64d6f037f24dbc90ee3d817bf37cb12891538bb80a489438a9c8b73a78fa -size 163761 +oid sha256:68d7727618d01747c0674df89fa22912a741afd98daca095c656bdfbe107a803 +size 161191 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-pseudo.png index 883874fc9..d701e4267 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Private-invite-only-room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65aedcec0925bfcf3b1ed314c756e89dda8865d324102be4e13e52c9d450a962 -size 192471 +oid sha256:ccd9e83baa4366db0d4af0f7d8a33d8846975571067942d9f41d2687ff721ec3 +size 195676 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-16-en-GB.png index 0d2e27267..33a73d00b 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb2b44039a241b672fdab7572a15bf52358fa3dd2511abdb64a723f21e2d6581 -size 108222 +oid sha256:a81fc42995a9925acbe09d39a8be5f47dd671a805b84925d3f3512a040aa8eb4 +size 110040 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-16-pseudo.png index 7a728deab..661d038f2 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64f629d002833c263d09e8fa4b5f69b10d488bd040b56a4e364a1e8c60d993ef -size 157801 +oid sha256:bbf766e98c8f9d548ade8c0ff49b31010c909b30bb3fe74a42c68c9e3764de7c +size 158418 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-en-GB.png index caf68de8b..792e1fe35 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f095f7cd1f072ccd97bcfb8771043859b7ad838b909d4887dd2575d7eb11a3dc -size 217894 +oid sha256:f7a08c756712f0f134455e5a802b1bf5036c269d02b34f5f0d96fc1a5d5a69a9 +size 214246 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-pseudo.png index 3f6048ee7..aa52897bc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:357cf4fdd03d7c3839ad4885184b7b752e24ce32d1594dde61e8237340bd86ee -size 266058 +oid sha256:ee5dcf7539b4ac2ad4201940266ad4e90ab2813ef21bc3e24f52cc377a0caaac +size 260859 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png index d5b6712d8..5634347f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:603ad0e9dc84a31b8ea060f4a5bb958903a2d614779821d755a4084e9ab7a60d -size 146430 +oid sha256:c07c5db340a69a4ca736caf4feaa77bacb7b170f738d05fa498246b90ee5c42b +size 145746 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png index 03d0d7ead..60cdc0cd3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3226a5adc9ce6ae16013fa00b59717c031e73578ff7ec381923c23b5e603f5c1 -size 183487 +oid sha256:b908e979f8b946b4e576df893bf0b3aad079eab68693082f4ea78a0dcad39b7d +size 179006 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-en-GB.png index 939cf2ec0..d2376f5b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c7aaf7d3270016e14286d5c1daf6b9536123fb132630ff5c92c24a96af269b4 -size 189114 +oid sha256:119ff3f618280cf16f8bc95711143a926a5425884bc65e0e02c986088f6372c6 +size 186308 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-pseudo.png index 9cd3a8376..35a7c327e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Public-room-without-address-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd97586c9ce410652483a7950b18ff11ab7b91f808c58348597a2639c115356e -size 239270 +oid sha256:968e5dee5ac83f10bdb5f19a3c59adca2ead04924b90985456f75b1783bcc63a +size 239180 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-16-en-GB.png index 02700ee05..007b88f73 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2081c030b9a9ec0e0865b802a3a36bfb5b97bc0018e3cbfde9c3533297cac011 -size 134952 +oid sha256:deffb1910db3413b9118c2398a9ec04704e3d81b31d6758efc648e556a4c8fc3 +size 134831 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-16-pseudo.png index ad37f69c7..6a59d2fd6 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da886e56167c749bccf00a8254e25d126deadfd1ddf7dfe03fd4c6d755cea5c5 -size 170796 +oid sha256:2c574ee9c916cb1e36ae6ed2ad80197fd0aa788d4d7e3ae60c219ff065a3a044 +size 168337 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-en-GB.png index e6579b6f1..51d6a3bab 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b9e4dc141f151cc7417515cf03a13df1fb243219455499848f3dd34fac6d10f -size 217590 +oid sha256:00dfd3b6920ecbea92e4ea88241639855a49ee7b72469f748ffab620e152db69 +size 210512 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-pseudo.png index 20d778658..667512038 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46a28284779dd65b62fa7c76f09bcede9eb556461544fd57345faadd09efb70f -size 264851 +oid sha256:74b085305c44dc448cda6a461fc2e53be6f0db83dd1dc74165634545ddc54af3 +size 260420 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png index afc5672f5..64366798d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14ae22543f2e795b4eb606beb8f21f1fbaf9c274769a053c841c3793c5539fd5 -size 146039 +oid sha256:8e83846f1868dce275546655bb2f7900ac93deed140374bab435e42e9ab93a5f +size 146196 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png index 7b9308296..5c1f2106d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7384a711d6fd9bf26611ce4f48d4f1364f995d214b59eeb977c4124265f7519 -size 184791 +oid sha256:f7f8eded960a654a07c115bb12b076552bdd10f30ef59f1356557bd2228ddcb8 +size 182315 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-en-GB.png index 5e4da6190..8ab7c8239 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03bb675716240e63c16c9be349b932bc7d9a7b72253b54c597db6a6b168ff9b5 -size 102494 +oid sha256:eafe9caabd369faa27a2c4d3fdec352f682e704f8dc1c9e3f83ed4903c260cfd +size 102421 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-pseudo.png index 6a3d796bf..97430c178 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f9340c56df9fa2aa003a6bd2ced99e15ea5478ca8e18160f039c232405d44b1 -size 119843 +oid sha256:402fb5f1a53cc7241e62f8852ee360e8e56a8bed19d1857155ca0f574923548f +size 119835 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png index 2de37e87c..26a8be68b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92090b635ca055762d5ddc18544df805de964912e04b22d5f1e094fbe9bba5ca -size 62825 +oid sha256:8a717985cac141de27076bd2da108255a32ba46a0fc6dcb1e13ab4e43c05c91d +size 62854 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png index c450577ad..ba2c7d8a9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Login-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e44e9c31d4675aa59f582a60554daef20e243327769ce7e7b02db88da23d38cf -size 86669 +oid sha256:15927a3c01da251076830c2a61cf1e0776447e6683a162b3f3c1255ca4e62e14 +size 86639 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-en-GB.png index e9f01ce9b..bb3647b04 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c31aa1aecf3ce750afab447cf6944cf45fb3be5f7f46d316565871d0e7b64bfe -size 115397 +oid sha256:81c5fe9a7959ad5cb6a5433df98df61684f8128516e747f31b1b829106719a6f +size 115193 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-pseudo.png index b1310df91..5d18a27c6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e3ceffe60f0d57d8fa2e4293a5c3de9dca2590b7c0a7a0ab4066e52ae17ccfc -size 117262 +oid sha256:32f8ed6f41789f526d5f1ef29c9fc24affa73f1c1039a02f4cbaea493854c72d +size 117049 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png index 97f552db4..c459c297c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3413e63a5e7c2ecea6519851f1cd4d71a9bcfe04ca305b73dea61cdad00dc99 -size 63440 +oid sha256:7c5cb6fdda70509e52e80a5c09d05cfb985d4eae1f92ee9ebdfae134fe5f9c58 +size 63338 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png index 11fab8a42..0fe532d05 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Picker-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3a3c13ef7d79d777eab6e6c595937340ab626eaa40b62e071a6996249a62eba -size 71974 +oid sha256:f731e7bb2c136ef287f62c84d26826cce9ba3e0fab9c944ddc3e0d87f27704a9 +size 72452 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-en-GB.png index 262bd26ca..d2016670a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b896bdca11d30a18c758c25515dcc425c5f5a94de24a0efff35cf656404824b -size 108388 +oid sha256:0be886df7a20669fbf6f35867c35d92ac3e31faf77c6b15176536e5602540e31 +size 108109 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-pseudo.png index c7925814e..90efa3954 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:527eace52fe3f043d9019079a084773ac3386970cf50d25e5c5313bad3c02bbf -size 133247 +oid sha256:3161038abe479fa78f99aa90f5b84586091681c1dd99937d895b862b6e7aabe8 +size 133053 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png index 5adaf28e8..a2b02fe2b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:993fab8694f35677df04f4b31a2f5ff2489832450e248dfd10ec64dac858b412 -size 67983 +oid sha256:3d3702eb62ff9b42cd9f4be3991429f44d021fd83795b3e4e4da18677f5fee66 +size 67967 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png index 34964b999..5109e3d6e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverConfirmationScreen.Register-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40abda720a4f8969670c59d6ede272c557eb3f6f0b7b1a40c0cf2f9491794aeb -size 97536 +oid sha256:67c2d551e2a199f7b140d4eaaa0cdaae504b9766248c8abe9c593a4c519e868d +size 97489 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-0.png index cc4ea1e2e..eabc2f388 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91fad44e7f4156be3ac302bde23a2d4c2045e4243af4712e7d422ff5318e4814 -size 105276 +oid sha256:5d1fa4e3db951f799216569adea53833f79f6c51dee8e1ff020cdc89aff72073 +size 105212 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-1.png index 28689e6bf..fecd66f8c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b4ef513ec1efa9b66302c8748759a9b5871678bf2be368b590521b715383cf4 -size 102669 +oid sha256:b3acf165f30f0f3891ac0b1c250b628a1a5d09159c3f5778121be1286a25513b +size 102591 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-2.png index 9c896d153..56123e40a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:088d128f6d0fec4d7ce3f5862c7da00d86e690fc9cff95777239be875a158977 -size 119824 +oid sha256:6b1f871fcc524b9e65921d98b33198852328c3087935837d9754976d71596048 +size 119944 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-0.png index 33f2fc659..69919468d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:269982e13659ac47e61229b2a9662ce5e9d3e9f71da54bbbdd01aa09ad18ee4a -size 113980 +oid sha256:75aa6591d4879f8be8fefe40874047a042c50a2bf14098800577408d34f764fd +size 114039 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-1.png index d34fb6b27..e2150168d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ff77c73693f717b6a67e2840af7c59c73cfcfb5693a30409f0fdd9a503f7072 -size 111453 +oid sha256:3ab97bacb00c3d2fa8a5d0bf6623f8d23519a05c2185ba68cbf7e077f41b31b1 +size 111565 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-2.png index eb568acf1..993cb0db6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c58f51f3b05b4c7ebfc2b358b99cb31870a5832d9b068675d8caa04b6638eb9 -size 144815 +oid sha256:dfef22ed4f6cc253e8ecc838cebbc2c2fbfc97c070cb2ec15372173014c8fc2a +size 145514 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png index f702db826..3115512a1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b9ea475ec78bcadce063dfec67776c759fe2344d37e7a1ef55e326918fbf101 -size 60764 +oid sha256:cee9857f1d27aa0e15f4ccd5a76752e5d17bd827d67568b3d8aa73b038ee0e49 +size 58428 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png index 69266cd06..c1a2bec44 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df9109a3e62b83ee6be295b6f07cf674a0668e46702ca32fb1626bb2a7d50955 -size 58559 +oid sha256:084adea3fce0bfa0d1d1decb3e0489ae0a7618281ce990a8c5c0b1a11f0c0805 +size 56147 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png index b7e4cad0c..918f928c7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e20ff75e2342297fc2bf69fc066a7a8b8fd1508e55912b894b83917e7483381 -size 78217 +oid sha256:e0eb8645c683031abdde4d1d014dd6368c9828d5eed8ab4057dd1f6856bbdf09 +size 79130 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png index 7668a8128..da65134b5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bd1517c9522bbe67ad85c39c9b6bb1224a2db70d49a56f716cff387c68c2020 -size 73399 +oid sha256:1c69ae73028295d184409c5f40381be0170d8a9545637f79e876a5def60e93d4 +size 71385 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png index 172f553d0..7c3c4db1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:afd6c97122695d38bf2cff97447903c6fb8b2d8d3278d9330f24f1add2152523 -size 71341 +oid sha256:7e6112132e5bbebb9446df78747eecf582feb7d2885f374ff5836c180dc3262a +size 69318 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png index ada4b720b..734cb2c00 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4bc71ee3623c59cb84540fc60d7b7c583e9d4e371281dde34453d455ecb670e -size 110929 +oid sha256:284e26a2235b2e4c6b4275837840d486964785589c10e8a703d5b957c59b281c +size 111571 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-en-GB.png index d9dafa2d4..1cc24e3f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:860fccf3028ee0d5ac2e584a130ceba421285174ce82b040782b5763a075f407 -size 142389 +oid sha256:9e59f37f63876646ad571621dbddb6d09f6279ca44452fd9998e879539f83ff0 +size 142278 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-pseudo.png index 46f9ca722..ce6f64e63 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39370b471cdc176e062af16e6e057713e9e020507068254c4d58967734cc93d6 -size 159728 +oid sha256:42806ad14ec1c53197daea158a5a2fe5f3bad4ae871ab7aa49adf3097f2dcb51 +size 159523 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-16-en-GB.png index 60fe18edb..42c189e2e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34576699eebf25eea2d75b424a3137915e0b9198931860412b4a7391fd724004 -size 92545 +oid sha256:898aeee19e7d5fae509c68c25f6355a2c12c198005bbb95c51b072585236d246 +size 92466 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-16-pseudo.png index ba1baa41c..b2808ab15 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Initial-User-Responder-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:971ce0aa86e4094f7a5aa97aa7d9a306074161fff2f35a839a3bb9faaadf7a05 -size 113213 +oid sha256:9affd4fbcf23ab51fd2c547568a275c525ca022676f981476aacb180f03615bd +size 113111 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-en-GB.png index a0e39aac4..85f2f88d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff7e68b544575cb62a65f76505ea9bcf9e18d5f1c23a95ff9c2bfc0b6c138fba -size 107583 +oid sha256:7a0c284b6ba2fdec51e5b59d1eb9fdb099a730c30c2c54cd98ee7c919c7607fb +size 107410 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-pseudo.png index a0e39aac4..85f2f88d4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff7e68b544575cb62a65f76505ea9bcf9e18d5f1c23a95ff9c2bfc0b6c138fba -size 107583 +oid sha256:7a0c284b6ba2fdec51e5b59d1eb9fdb099a730c30c2c54cd98ee7c919c7607fb +size 107410 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png index 9772843cf..a80290710 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71b8769e78e3c40b9301d8f6f5674e0652c810fea5047413fb240907c469285a -size 61584 +oid sha256:456283ad536d066e32f8dc508130d679148563b29efc2bed57030edbc2a7b9cd +size 61491 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png index 9772843cf..a80290710 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71b8769e78e3c40b9301d8f6f5674e0652c810fea5047413fb240907c469285a -size 61584 +oid sha256:456283ad536d066e32f8dc508130d679148563b29efc2bed57030edbc2a7b9cd +size 61491 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-en-GB.png index 2d1f6dc5b..de993ac48 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52523db2aba7eb976442148c2d5f91d5671051c098b05eb2f9c7be430c3c1694 -size 156627 +oid sha256:7c8b7e00713626045634af923b480ede95c3ad21529cf45f58c73da8b278f934 +size 164460 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-pseudo.png index d865b32de..af5abc53c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e3fffd292f64c9ba2f8a8faddc5189ae50ee47270a19228a6e7907dcf4b0bcc -size 163130 +oid sha256:79e417f31e07c0532afc6dd79624c81f34842a0642fa52882dc0cf03ba0c346f +size 177162 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-16-en-GB.png index 8ec0f7517..e2d59614b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5eacf4f9bda7c545775d6942dbbb74006f22b1f4d389b673dc7dd7f8815815e -size 101949 +oid sha256:559b96e8659f2625f34ab4e542b68ede6bd6d527adb372b9ae1039467c179208 +size 110308 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-16-pseudo.png index af3d5d470..b47baafff 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Bug-report-disabled-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1467462e53d7b012683e8ca0b8081d35f807b5cc2162188401fe5093890e4ce6 -size 117295 +oid sha256:7559b021360b28ccf39b58be0b36d5bc57c30ddb8e4ae86b29ae4d72e86775f7 +size 124765 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-en-GB.png index 0de91f6e1..dde63b566 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df937f8fbee24daf78f83310fda04cecbaa46a0138717a6b9dff637ed3b4e675 -size 161130 +oid sha256:3d1ecf5561f5afcbb1f541de68deca2d03b1aceb131529c97b7db2a86ed33c32 +size 168061 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-pseudo.png index 81feda706..0c5dfb67b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:680feb663bf4c1157a62b7c5ba81161368e6f2e740f862aea2d6a3a1bd43c103 -size 167872 +oid sha256:749e9fc8e71e8f62e88ab0e5152ffa6cece677ecff039c828dc4d6d689190371 +size 183029 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png index f90ff88a7..b592d4755 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ae451c9873060a79d7653089af4823cf5cf686c7c47d3b68d52de0545b27b19 -size 107060 +oid sha256:4ad37df6532ce14657b7e958168bec814882792d54b198923aea1957549ecc6d +size 113693 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png index aaa277bdb..1fe8ec900 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c08dff4a65638a354ad8ff3947e011d229fee99e2b7d6c7c0384ee39371fb5c2 -size 123855 +oid sha256:e5816d3749fe1f0bc84db0307a0f4c5e96f892ed15174e2c5fc551c535bbe83c +size 131013 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-0.png index 6f920f9a6..53124e5af 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ef2dd67c1a888b56f7c03e83ed2db09097ec4497f15ea3af49bc1162cf770df -size 149286 +oid sha256:674f20a7963cebafe507f0a5f6d9c92aa2080d9621acf2c3390e55692fc0085e +size 149376 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-1.png index 22a259731..78c6df91f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f66a1bb759c56e7d1c1035ea0332c0ee782185bf83a0989f47c6ea4e54d4a356 -size 146631 +oid sha256:0eec34ccc504019792e829fb8c649431c16d4fd19cd2ce5e9ccddc5c23b4870b +size 146690 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-2.png index 70b1bc958..547ee7413 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fbea5e70977e02ebb1457061f325c8209d4616d5578f3e0e90676f2d1e303c7 -size 139370 +oid sha256:9032496a6ca5d5035c9182b351cfc673a4764b0ef64ca0e87a62ae3d8812f0ed +size 139508 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-3.png index 68bfa293d..5add103b8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-3.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:961e7ea266fd50daee4c1b8555a977c5a248a460dc384ed861e1586d0e440532 -size 152019 +oid sha256:b1a5403a78ef9a67f6e7220f8247f9a9bb6889c1f50b9dacbc4929c70a35f111 +size 151874 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-4.png index 06444cb1f..036e0aa30 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-4.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b1dc99164aa05f2f36cc4b61fd0a840370c5a7ba92ff2c674d4d509265cb5b5 -size 169401 +oid sha256:786c7ac92d820a23a1e40aa1803475f742c4148a198f6f4a37c95273024c2b39 +size 168859 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-0.png index e65b07360..ac4983ed1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38dfe4b80ca5dfc16a6a83b88dc52c97082b9f48d906322a749b7e7e19d59de3 -size 192141 +oid sha256:3d55f9b3b3347e4338b4de8183cc2c8f722c4e36e0ce07e99e7254c1f4b66ff7 +size 191988 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-1.png index 242036934..d7f4f9568 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6d7d3d2261ca45251dce7c7f6aa152660dd6dbd814cb908ee096841a523f0a6 -size 189144 +oid sha256:8fe5d42069530eeacde1506ab76ab822a61ff4968896a50ec97b435272b30af3 +size 189050 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-2.png index 9aff50994..6b0bf03c2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:48f561df9406198da8278a55c61d62ab7e6e891435b551862db251dcf8477b79 -size 181495 +oid sha256:d8e27fb73987deb74b9d3a5b52205965c431f3fd796538555e8a13364581a7e3 +size 181594 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-3.png index b365ad729..b0d033158 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-3.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c298ce42b13d5dd8d7d319d865f4b81de780610071096359da87dc843b80a6b5 -size 212050 +oid sha256:e53a8fb76f36c9d0d8ef1c9f646b6dbf5c1f4a9b9e87c481420b2df596e473b8 +size 212283 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-4.png index e0ed5c6dd..9abdf9e77 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-4.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03428bc03ada73eeb18821cc892a01cf50bd2785efd35ff647825c922408fbfd -size 231459 +oid sha256:a2c5b8d294dd543957ad9cdae9a61a69d77c412668da870878e37c62db051302 +size 230548 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png index 5cc9e8f9d..662953a60 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f85763be5974fe4c541a217aa766879328817e281f2694d9f0823e32afea8fb6 -size 105945 +oid sha256:74532bd81726ca483842ea000c346422a5f687f537309a032b28fde8b0cd102e +size 103105 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png index 32237d16c..caeecb36b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:374a3b83ff1b056c4910163a7d302222151579664f24cfd054abdbbcde9aa31c -size 103810 +oid sha256:dcc5ccc1856bcf71cf36b89a84c50b6780cddee6c0d50422d7f1e25c1e265752 +size 100935 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png index 119ff96ad..cc2fc4eb3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35fb5d9b9bc9cde46d3b7f405145d41bea8883ab6afd031898f03cb81a15130f -size 98348 +oid sha256:c9fe356e9ab78b7cda277103a93853b59236d87ee7ab138ccc1e6fab7d6acafd +size 95210 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png index 862e9d4ce..576fd3227 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:136fa4eb818e3d66f45c9d3ccd5f677720ed4c0e9a1cb2686d3d0e38fead229a -size 113548 +oid sha256:a6ed543c2182b1285b663e55b4747b5c38f69ebca56ff63a4789c9671d872ba1 +size 110740 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png index 49bcf5d8e..d51622a58 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:917b986b7ea4279ca09f303f427fff5dd91be1ea7bbe73e5c9f2739e832d68e8 -size 129633 +oid sha256:092670766057184fe2d3b923c19d13991e8c83328f58f8f454c5718708d3860e +size 126903 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png index d4a1e29bc..d21023631 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6700cc53874b15b5be1bc2aef7c4bee56a6510a2a1405cde10079f7b90a86838 -size 155364 +oid sha256:bafec0342b4487df3f787610af87661586b51f47aa965c9b6bac6e0464c3d8bd +size 151882 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png index 9617184f5..b6e45ddf7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9154deb887b16c392c0729713c4a91bc706ddf2d57a585365e6da6cd7d75a69f -size 152449 +oid sha256:b044e0a99bb31ccf88591064dc444a316d23d470430d3ac0e18e84e83b87d979 +size 148707 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png index 3080a0e6a..2c8728e14 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7633743a05be7107ab5b2e87508b96bfe414e13bffd03defe521e3efd5cfc9dd -size 145041 +oid sha256:9fbfcfd1ee3b526daf5e24067a4024fe511bd0e3b97b2b187fc89fb2e5785e0e +size 142324 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png index 7653b8e92..5980ee60a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6040f1e1ef127ace8627986a5cfc27087dada9bfa1435f389586e3ab192d81d -size 181132 +oid sha256:9dc4575eec9a3c644915569959db89aefded3f04009bfd89cda23a0d291c1159 +size 177239 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png index ad26c4556..2234a2e55 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37c052788229991567f690c081710de7abd184a26c7522890a4d8af77e95557a -size 179266 +oid sha256:328ae999ebaf191cbdb8d2bfbd67a17337507ececb3a5ae16bd3d30ceec54258 +size 175673 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-en-GB-0.png index 95c3cab00..5d5d3267e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:807aa8e11948c203afd2deb242544db922d2b9fa5f03bfb5e51a065111da287b -size 207287 +oid sha256:b4bc3c890e0bc3691c8252c5c5ad851cc55652ba6ebedac825898e9f2a764e92 +size 210412 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-pseudo-0.png index f13067657..a1332ba09 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95bceb140bbd1058309c452ed10a2793786d3920d56b560b064bd42b168d8db2 -size 224095 +oid sha256:1aa28f466095863df3bc145f10a95996874b6a6d99fcf6be2b9113e19120e53d +size 226414 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png index 0a07006ac..0d62a1c4e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3937567a4f7c207808f34ca90da2235499b12125bdcab7265a4306952148656d -size 138754 +oid sha256:46ae4c8264fa6b17370a2fe366bb3ae722de8183ae57c3983341cdbf82a95474 +size 139872 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png index 31bd7b9d2..0b1ffe573 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceHeaderView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcfd2f3de9d2bc68fe60f938a7f547b9db72ebca2b4dce6d70295e3c41c031a4 -size 164599 +oid sha256:2244639fa064d9ae25cbac675449f1e27feb48a2a7f49e3b2b0c8d8f1adc1457 +size 165559 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-en-GB-0.png index 869ca2bb5..4672d8ce1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e429a65ea8ef31f50dc71b33fe90ef953783381eda4af3cff9d64756807f9fd0 -size 193511 +oid sha256:df9b1899a2c6aa9afc0c859aafca8fd0a056bd0ec402552bfc832e5cd5762e01 +size 200712 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-pseudo-0.png index a76d23117..421bde143 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1010ea05073ce4eb55fc791a44de8c0d03a3bfce63c706e809b22ed00526dad3 -size 235707 +oid sha256:d573d581801490bcdf0fa9ccfb544659d2c6e23e3996ba37b9c2ebb148a75891 +size 242784 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png index 8170c40da..511cb5a1d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9301fc1565670473d8a3c7d4c084fd896f979e44827360c97713eef1f537417c -size 137771 +oid sha256:dd252a40ef0f121da58ff5f9ad12ade1bf2c82f7693140339b63a991f8ebd339 +size 133615 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png index aeb826ce3..8cc707855 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceListScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a14a67f73ca88566f80e6c4c086f1f56ac52a8d4bc31a522a2e09371711c8f4 -size 162833 +oid sha256:ffc4e7f5e44ad3f5e8db9e094fc0407f7e6100182a9ff38ce2a7401409097d54 +size 158346 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-en-GB-0.png index 984ecdd3e..6d22ab202 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8fb30078446367dea1b3b82dcb666fd6feefd209538d33497069e6b093f3169 -size 237815 +oid sha256:1960c0e64fc0e73ede938bff1c434b4f1231d5203d3af1338408dced56a550f8 +size 209130 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-pseudo-0.png index afbb724eb..f5df10dd6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5027349437978cdc95f908a0101186b8760c1da5b69cf4e5edec867b41168065 -size 279853 +oid sha256:af9eeebb734a785736a35c8183bbec8f1247e2b1f8f98e53668f2d59ecce9d3e +size 238162 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png index 50af892c3..06bebe9bf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cbfed0d2b08d41fdbd6ff60c281cb5d6ec3e80bbdc6a59329a83d6ea9d4c318e -size 173900 +oid sha256:8f5ad368f8c51dca51d08092f3b5d1f5e84d768f73fe694d297a1b4240559b37 +size 149758 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png index c93a093af..d912b38ca 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceRoomCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff137a6fbde88a171d53a6ac84d0b865e045d6e4a20a9391b04752fd50a4aab3 -size 197663 +oid sha256:678131ddf680613fba8661b1681936734ed4cae06306ec615fd97612f387a08e +size 167700 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-en-GB-0.png index 4bad06a59..814336e72 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd3dd3c0a55de039b42e2e482961a0bdb10b620fb9ec61bce3aeb5b21ace9673 -size 242555 +oid sha256:9c8cbd5fe885ceee9eca64c02731ba8f805a51f3475e1dce5a77c88b8842ef22 +size 242785 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-pseudo-0.png index 6f97f2e8f..a546ffdd6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9566d9dad78a0543f67888d1b71b62867872199c15e93773f0d77ee1eb9a6d14 -size 282042 +oid sha256:a8d6377fcc2b768c56824bb145c4e92613f74b196ee6a8151e9a779691b873b7 +size 280499 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png index 36c9f4ac6..3e5d9869a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d52a23968f190f7e5d09ef0c5ee88753cbafbb62a50df806cc125029f058f716 -size 187280 +oid sha256:17cc2d16a7da68b0b8ffe031defe32e60816475f241d6c6ea91467b1d69d2987 +size 182655 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png index 30f45fe42..270ca9e5f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/spaceScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9ee877dbaac15c99f1a15b6efb40b5704c149ec1e3ba39e3ebc955943e6866d -size 208759 +oid sha256:f136a26cee3e09537b315b8e945764b9fc45336044445ea1a13d89badd007dad +size 202228 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-en-GB-0.png index a5c69df28..020b37f38 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b196b0c7ef95387b7e2643e421a7acebec2bd26a4320c470d604f9710f3a1b4 -size 114304 +oid sha256:d2a74be0c13eaef6f034937f0e68c42483442acaab0acf484d68712e6775f78f +size 75724 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-pseudo-0.png index 352539460..c795f3da2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f296669d40a83c27c5ca06428a7e0e42606a39ea0c9b8ff622b62fba78adc25 -size 121582 +oid sha256:f8756e97595b4603384137ef4e1fb8e1595d4108b90aa25ab026e3dc2712f94b +size 78071 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png index f0f14cd60..6dff8bf2d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d6baf08670cc76a5522c8b99a9c83aa25e78c4ed7ecb168b63618830e1a0669 -size 63935 +oid sha256:1638bc1089608c264c9a2750f0c9552778da94bdd6007d56b9769b37d2205e37 +size 64732 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png index 7d98d7b4e..4378969e4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07e29fb97f007495dec1a3635dfd8185d6a38240dc32079cdeba13d25905c93b -size 79420 +oid sha256:1930670ec63f1cc5e448be9f228e4ad3b6384ae620e3a3fc88081b4421d408c8 +size 79317 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-en-GB.png index 20d35e74e..c84158e99 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e80dc15b2f276a47caf36d95b748325d846910afe7ef83727171fd6a3aa5fa13 -size 96274 +oid sha256:53f2d42c9355e2936fc1bda17af5070efefff3212f133e7440aa12fac17fea4f +size 92035 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-pseudo.png index 7c84221d0..bd2b5bdd6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1951a3cdc572a11f18f5576329008dd29945f76166299d1855082c576f7036fc -size 98873 +oid sha256:bf5e54fc5f13a59d0edb9cfe0721737e9563e8bbab976c7a422bb08709b736b4 +size 93615 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png index 572622a3d..57f4af6b8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bdfabe045f511524c4140f04f07d2a27897f770307ffa65c3336637d2ffcc8b -size 53443 +oid sha256:e35d7004aea1946888741d1695b0d8f9001ce8eed0053d7f0b37b74103b07166 +size 46988 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png index 3f0890cca..8e69c9563 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.Picker-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8821421520c3ab2d1d0d0db0dac4002d5417972df70d176ff7dfb716d7cd1449 -size 56141 +oid sha256:d55f91e6a3f58082aefc23d9694b0ad78eb53340362d8f2b597cb627fbdb825a +size 48214 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-en-GB.png index 9e61eedee..66a3191ec 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:085e838f7c8a446dd378a291968dcee8c2ba9cd635a5c6b008d837202042669e -size 90214 +oid sha256:5b8fb3445c10189bc979253e53e5a7e6f8be70d3861bd581520cc0e24eef9b0b +size 87728 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-pseudo.png index b0d4c4a56..654d062a0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e41017544ddac78c547760626f08dcdbaab83281cfdbf98a0d010c96dfb69b6 -size 90920 +oid sha256:53e5779773e1190602bf56e393960a8f13ddf5ddce70df023b9f2050c24abc3e +size 88053 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png index b324be43c..e49c55375 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc16f12933f06d8a5313ab140a4ed8ed4c68e3024e194db84b9934781104aa99 -size 47999 +oid sha256:db096b8d42be9426bf2f1e0e7948a507f7208bca6c44abfec7d6e2d4434491c6 +size 42243 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png index 642ba1f67..e49c55375 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4a5c3405543a0284ba8148198087ca5d470b4fe0d54d700255bacac3ef1079d -size 48659 +oid sha256:db096b8d42be9426bf2f1e0e7948a507f7208bca6c44abfec7d6e2d4434491c6 +size 42243 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-en-GB.png index aac9c0f9f..426400b0a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5e778152deb5a2f73dd14ceaac7f8d9b3ae9de53f85f36580d07b62928ebb65 -size 93477 +oid sha256:202d29128e9b390cb404e42a0afdc97120ee7ab799d7c042021e4c8affe61ed8 +size 90820 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-pseudo.png index b9ec6eb44..2f6d6f6bf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/staticLocationScreenViewer.View-Only-with-description-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df251725af8cc75250fad7bb21e52d01ba6443df53e7bd922e40e662f81a510e -size 94199 +oid sha256:c0f47bb75719fc03ba8fb0c5d1c5eea65c22b48c5bd0bce63c10cd419620402c +size 91190 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-16-en-GB.png index 890247889..2b37ecb7f 100644 --- 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-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4df4f7d1e74249aa9429f96e539c79c25eb4757a7d280514cc8b57b4ecbd7b87 -size 50797 +oid sha256:29aa8fccd4b005e9df48a630a28123c1dbd87e20532bb06ae8bc098c15f7bcb0 +size 45148 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-16-pseudo.png index 1517ffeb0..2b37ecb7f 100644 --- 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-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e68f61a74b2c76dc73a7d511c711b40377df93e7336c47e88ed0d9f86873d6d1 -size 51472 +oid sha256:29aa8fccd4b005e9df48a630a28123c1dbd87e20532bb06ae8bc098c15f7bcb0 +size 45148 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-en-GB-0.png index 23e4c548b..a0f226e2c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ad04d0b7d31ee2b4df6f3a6f4a1df5b0884454f4e171558dbca8ea9cb4014bb -size 2264520 +oid sha256:aba78315275a1c404766b5eb275011ef1175bd2f7919f695141517ae5d50c18e +size 2265233 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-pseudo-0.png index 6f22d9ccd..6d3682234 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47965f5fde09411c582e345f2bfc1a32dc794ca7f4cf3334ce8173d3c8fc6411 -size 2259069 +oid sha256:47a646977453d053a289bb0ba9215cf71fcb71876c8936bf198dc2e4c6141526 +size 2259512 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png index 370c58de2..8298b99fe 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58c6303109f973fc8926fd18e3d2bd3e8cc6f3062f95b7b4c59165ddb2250de6 -size 1099185 +oid sha256:ae741d02f847b5361400f3534306bd823809cc9153d23f377f74f8ad0e95b8a4 +size 1105990 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png index 8765ea782..d1b885926 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db5e7ce6b6f0e13269f142b3fe28c00b42ff4fb090862f1b9c91021a9aadd39b -size 1093777 +oid sha256:f6950dc4243474c51f9edd5d53066840c06478a7c958612fe3118a3230f4e9a9 +size 1100584 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-en-GB-0.png index 95f12f200..ec42afd4d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:757eaa2c262ef6217b62b55bde424a7d26efa8db632956003c503a04eb35ebf1 -size 82883 +oid sha256:92f4ab8d47b104fd93201dec382543b7bc7c2971c6fdf6c280251f63440ca713 +size 78978 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-pseudo-0.png index d16824580..db1d164a2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90ce8d0ce47578fcc75c13cd6fc2794b4854e5ecc1a9c76e6b78a7837de659d7 -size 86648 +oid sha256:0ff15a1f15ee4db4037272d3860089b4523d4d9de0a20d90497f1ccdec66f513 +size 81883 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png index c388f7217..261b35b93 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f05c62690e9e8b3e89a5da3e18b7713f0ceeeaa25a635c56e5a19c58c66479e3 -size 43757 +oid sha256:e8a3770de73da735683e202d0d8e1885209547564a91875265720558e2bccfc2 +size 40263 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png index c25a50b96..115fe2aac 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:704b1ff8cf1fff2a3d46f6631031c2eb1b70ccd5d4deb9c57e4a5ae227e9784b -size 55271 +oid sha256:8e3a0b4320b21ab538f81a27bd7ac018530e6a041d64641015b12808b0f05141 +size 51187 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-en-GB.png index b63ff916b..ee383c552 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:968e238718e3e21621dfb5b40df42a0696cd690c13064955fd743ede29f13647 -size 1219771 +oid sha256:cc86d72ff1512d6900645be56017a775c6cd4f5d856eb5de1d17a3555ed8ad43 +size 1219839 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-pseudo.png index 02c8f2307..161b56d03 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0f073029a18762014b6c81e355b22d5953354c6cb81cf22b395a82ac4aec527 -size 1221900 +oid sha256:7e41ab328f051129b8cc2484a0b5016e395474d50c5bbfdfc384e90152c54d26 +size 1221872 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png index a543ce11c..b012c630d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:446eca48caf735f27eb3b5c24f07f65c2947a2e0731b26fb763261caa4fcd3f5 -size 612417 +oid sha256:7fdd3bf77553a8fca7fb0c264a96c479c1a9a1852f8ceafa52af5655c2c87860 +size 615732 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png index 282091239..b92393040 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca023395d336010965ac1b710947667b7a0a70770bb809ff89825e886e202799 -size 615358 +oid sha256:7ee86f9ea470de1b59d635dcebf0a49da5ce47ea19384b768fa97af39c5a28ce +size 619136 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-en-GB.png index d27c202f3..fdbb52606 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb5d79a884cd9c0fca7c308db892daa34257d54f4f976c1b934fe169d4e1d6c7 -size 2458850 +oid sha256:8dcd9497cf3cf836d35b31a5d3690edbf039b7faa69137667e3c63f56bdd0c8a +size 2458744 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-pseudo.png index 863ede048..a80765857 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8f6b1f8f77384f20ab95456410ff08b79cadd74dfcfa1200168c550089f0df1 -size 2457992 +oid sha256:a733074d8a5b6ba7dc727849c3ebbe4fc01e67a6be33b584fe4b73caf6ffbe10 +size 2457913 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png index 9873c1cdb..50024cc96 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6afd220b8bae38be9860c2baa9da404f23cc71459e83485c8f347983fa3c36ff -size 1029159 +oid sha256:714b51c8bda9ea59e66a1e27a5ef46c086e7af7ec2be3cb58c39afc26a5c5a34 +size 1031474 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png index e615d2ebd..4a976d0cc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4059ee5720e1f915c4893ac1fa8ce00660a68b36c2951ec7c4eb4a7e7de245bc -size 1026393 +oid sha256:90e33887b94b366849d9ebb640374515b68f3c792e1dbf9aab3b1a8cb2839b0d +size 1028734 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-en-GB.png index 200ad06f6..04058484e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d68e0cffcf14294c57a65775f5e9435820b05f14ec58408fa2d6081efa3e21bd -size 2572803 +oid sha256:ea1149afb5eb4b7cde7a366fb6636f326af91ce46d02fd8e3f5481d21b69781c +size 2573053 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-pseudo.png index c6514954d..5d62e13f2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ebc05484d35976c68a90a0a954160cac41d31b48a7141dac593ed8e1f812de1 -size 2584345 +oid sha256:dd687bfc5ce802ff797180a0d0eae2f7717ec347e7c07b3de9d2f87ab3f75d8c +size 2584515 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png index ef2fb8f97..70e04aa8d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02d938d55eca319ffdc910f2ce7fc995787b49b599b3753ca0049736a36014e8 -size 1150467 +oid sha256:bf6aacb9d1f81709f84388a23725aed7b16dcd00bbab216a928000c81b1cd15d +size 1153122 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png index 80a0b7009..547f6c815 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:72c317f02c0ae5551b6417a2d63cd007813592c69e072f1c18dc31d86268792d -size 1154497 +oid sha256:b765634874a646515bc7212504f9d4ad6e091a014ea5fb2cef3df59dd1781386 +size 1157084 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-en-GB.png index 0364ba5e5..5a52d6a79 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd045932b14349f98ed11f488bf1dcc16e73a6f44432f004fa3466fe7cb7b6fc -size 2575000 +oid sha256:cdd32c4b33a53aabd478d7b950706230c137cfb77904531296c34d033233ba63 +size 2574851 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-pseudo.png index 888d94708..aae4c0ce3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e9633fe8c355904e6fbe2aca0e53786dae1fbbe54f9476b3ebbf4b4493cffdd -size 2600434 +oid sha256:3a600958f14a743b3e9abaa920d9fa27bc688cb81183b9605316d38f8c35d3aa +size 2600357 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png index 07cfa2d6c..8707908cb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58c42cded5458253bf570df2661c849d4a69c76fb83b884d9642a5425233f7ec -size 1255297 +oid sha256:ab4f26c8e030e65797fc37624fe2bef61a87e943bdfdc19aef2b22d9141e011d +size 1258751 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png index b779fc4eb..ceff6799c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff413d483bb3d9ff0299dff80dc992fd16b865f16395683330b798334b4d7ffe -size 1254963 +oid sha256:2f647671c4eb4255abaf3535f4c45e1fef832c3be77b9c73c0243983484425d7 +size 1258514 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-en-GB-0.png index e5b4b5571..e91c51d70 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bedf892ad453c0e2d6a157fc3a38a7cf964e2509d3e24885c7b31683aa46a979 -size 113653 +oid sha256:c0a132b11c29320571ecde295fee0b1995383b547befbcd62bb970dba4e6e448 +size 111986 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-pseudo-0.png index 2e8093ba1..651ca4c38 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:752f6b8424b70f58443df241049e7e2706836d94d81ff73b14b460c048c3d6c6 -size 115193 +oid sha256:2425dd334f3a624df85122e294fc5bbebf398178508c6eb38f768d370cb442d1 +size 112617 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png index 30b892a7a..ff7e79006 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8122c559a90fd4425a7117960fad021482fa2c93585a72f6f2814d619d7bf2d -size 69384 +oid sha256:49adeae608c9c17b31924e0d6000099612c5f14959b7773c02b0d6be22062778 +size 64872 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png index 7211e600d..ff7e79006 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f0f1970da3feb417beeb4a007406510a33a8d204fece27109d883b1b1bb76ea7 -size 70243 +oid sha256:49adeae608c9c17b31924e0d6000099612c5f14959b7773c02b0d6be22062778 +size 64872 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-en-GB.png index b1b66e03d..b1774f549 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:425e5b0b407d5b08af33f1593241d23e7adc8a518d22ca4b6a2c410e352ff70a -size 160827 +oid sha256:d67d9f42bd04419ebddb29019f1f12dd35dbd7c0bdfa63060a8ef173a2eb50e8 +size 161720 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-pseudo.png index 4b0e35132..90891c3dc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b96862bd86ef97c5b4751f611ddc3bbf72498dc1ae3a611ad4d2d78ab5932f20 -size 165768 +oid sha256:3b7550ea708c26de029f574fdd7c508580d9d1311964ddad3e694092c42fb6c6 +size 166616 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png index 3a5749477..57c98b5b2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e56981a661fb7d03bc13b44803d4475d22cfadf7f933739205cd6f3db85c12f -size 107426 +oid sha256:3ac781c94c6616942f6f52d783b3ae307bf8ba876830e415da203550b44fcb5b +size 108217 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png index 0fb3c327b..daab693ce 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Button-shapes-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73b3f6cc04b3db319b9cbf3757428d9f85ab7f801a3196687cc201afcf510f3a -size 120248 +oid sha256:99456b85493ba53c60421e863c1cc7e52efcef2988b4ea7918f0393afdd791bd +size 121022 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-en-GB.png index 75921127d..07f240d0f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:958ca9696735916c9c014581a5dced98f1d3fb6ea13b6756b40bd0ee1a4eb8d6 -size 126122 +oid sha256:aa6ed0d0629081afcc922b86d27b0d3547687dbd7a69b8b1be6bb55b47572ff9 +size 126115 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-pseudo.png index e9eab8f4b..dcded9f4a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d33f60f244f5488751af96d210bcbbae29d5a1f2bd8e33e37c470e2a444be72b -size 135779 +oid sha256:6b90fa3b8e212590d32b5392bca159d6ab87aa68b6f5a41894b08df7d5a7e9b0 +size 135759 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png index 36146979a..670a893f7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a20c14b448c36270778934e960d88327c84b00797db522518e16f2bb168434fc -size 78675 +oid sha256:ceeacead9e4c3dafd66654b48465cc2a563ca103b6c49270dd14ef6d595b4194 +size 78662 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png index 39efb9cc3..e1a207c48 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8b41ea7ecd491b6bb26199604d7cfd5e799ae6fd0f0281f037a6b19bb8dad54 -size 88303 +oid sha256:459e2955bf05cb30da558b38d0973f147a517e817f41ed2a581c6f9827b3449e +size 88294 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-en-GB.png index 5a01e9b7b..01166794e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b94cefceca1c5c1aa22a49063867ca8ac915cdd78b9b10e3655883df07d97b1e -size 108022 +oid sha256:f08e6c7b2f5bca6355e25dc11d33a8af8712ac63ad905ff1c255354a1b185fb2 +size 108014 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-pseudo.png index 5edfdf4e9..53523f8e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a80fdfeff344fee5f7765733da0a89d6334e7b0bc63ed7ad49997f39a14f320b -size 114939 +oid sha256:7abad7e0e48e480fb53f6f68bb35654da21cdb98c0f16b97ef9bb1be6a24b48e +size 114917 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-16-en-GB.png index b576becd7..5d96ea1b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ae0d72ae2a925a34b9423c10982985a44ae1593fe726ad50598040ce07885c7 -size 61805 +oid sha256:16390a5a292262c44356cfba087399b08305878a19ac38994882269a0642e683 +size 61793 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-16-pseudo.png index ca0cf5202..89fbf0247 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a20f2a01c33ab9947bed68929696af57eee82412fd978908ac103a9e7fb0a307 -size 68215 +oid sha256:741cbf529043dd003a8180b94ebae71f91ee790f0808650afea1e52e9580a24e +size 68207 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-en-GB.png index 9ea88cf32..c8f1f4271 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24863450703d306e851314e4973b6b9ffe4288f16b894ed9f76a0fe066ea46fa -size 120178 +oid sha256:52d9f7aeec96fa06bd189bcb6a5387be38a82a8af0d1ddcb19a2710ba8144c56 +size 120171 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-pseudo.png index d3c0816f1..1a925440a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:453a560c0dec15c80ec03ceccd73a3fd5dc8960323234c56b780579c7412f8a8 -size 129301 +oid sha256:dd84aacc5ad5459640ff0dd1ebf312d7b34cfd65b6fa3521bd2223584d81bb07 +size 129280 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png index ea46164f9..8f5ce8033 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ea5bc18351e5c68e5937fdf43025c4faa9e00681ee66b7d5dfead73a5bfb2a5 -size 73004 +oid sha256:81a204268e94094c076727c8208aacdcc614ea309ec35e208de4405b31644984 +size 72990 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png index 241c8ecf1..773907eb4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c7ed8564054d37096676a312a01b1b2890b454518cb83532f757d73c345c7c1 -size 81162 +oid sha256:3fd2f8dce85962a0b63ff6c8c34e09a67a174c7d141a76dc647f07b5d11b42ab +size 81150 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-en-GB.png index d59f59210..7ddbbc025 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92ffad44f47db134d2b293c55c8b22a0331ddbce9856d2111d6d9e903b719523 -size 113752 +oid sha256:69456a05b7a366553418e28ef88f2c0b510f1b5aac2982fad3e053fbdb3df017 +size 113743 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-pseudo.png index 90cd8f734..14fea6585 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1f329d262e4b55325fbee56d119691540691c8bbdd6a71aaa1e55925d1b93de -size 121490 +oid sha256:b0e15faa23cab6f6b4f61ad5ecb91187eaffd100af6f6e0fa9c14ae5f51d2213 +size 121471 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png index 31e220d35..b19f7f592 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c18ff81a1f4c53cf01a09f4e2a489b123487e1f7c54c8b5dad879a9cb37ffd3 -size 67541 +oid sha256:4f73f08b7b07a057ad75f6e07401da24b3e0526c46b08fe7efd676b1c3d6162c +size 67534 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png index f0adb9674..abfac308f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2278a58e91a653eb3579517a3cc34bdb602899bc8b649bc9490d86ee3a7c7b1d -size 74723 +oid sha256:2502e5b5bea2fb048fe9c121a9965e991246a81820e9deaf9d318928d743c013 +size 74710 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-en-GB-0.png index 49c1884f3..e833bd5e6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:201588df423e1d63895c5c0fc3b1c241cf2d031d18b4d6178941c3d5654aa9fb -size 119423 +oid sha256:72dceda78f2a8d0a89c159d63edd861afbf54e942a98ad09545a6dcf6f77e091 +size 119259 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-pseudo-0.png index b88d780ac..844a298d9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c08fe2c21c8851630426e0128dc1bedd703547637afecc179af1060088915b88 -size 128193 +oid sha256:e6aec863baa776328de0bb460c8451789c98edf2ffa974ec9117292010dffff8 +size 128066 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png index fc43a20c6..6567a1532 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:559151c4903df449ce5d198431720045f2dd15dddfd75bf8d22bb44a57132afa -size 75019 +oid sha256:b2c09049a70196253469f3a3c6a87e1c3b839511b5580ca136189854bf9698c0 +size 74928 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png index e86401b3b..f40bbef54 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f2f2fb93195961e1fd536346bccddc6cb1ebb38cbb7a9ab02b84609b153d0b3 -size 88091 +oid sha256:e33ddbdd981bef65862874373823e657926558cd09e8cbe3de1bfae8ef8d3669 +size 87975 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-en-GB-0.png index 30346c6f5..ded325dce 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f566420692c72e8f238606cea0fd954ad37d3f2409b717216543d10b6751eacf -size 159161 +oid sha256:6e70f403b158600182499365cf13d720870322dde412ec6c7cc5c07649d3f165 +size 159207 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-pseudo-0.png index b8a758964..d2ba3854e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2632555ff1f7309571615b0b8850aeba8858c9892e1a7eb7e9aab71a1d485f13 -size 150357 +oid sha256:c789d895001eb5ea7d635cc14130f30432db6ad428656ca8481e4a1cb856e8c2 +size 150391 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png index 33572fbe8..1bd35d674 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39dcaad52c52a80de4f355b8fd45931760e3ae41dd5eca73d526a5f57d737dbc -size 106680 +oid sha256:7999ef1c1ce9a457692f75d7551ae9d855f07f6d526ac04e47782e192815a871 +size 106691 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png index 01e3f2f97..8cd27454c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58afb93595ced1c8d63b3039b4c4472445ca472a58418cf88a252fe676b80dc9 -size 98835 +oid sha256:8146956c539c3f70eec3a546fc7880eaf8add466defa418c8b9f88d3e245a2d8 +size 98848 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-en-GB-0.png index 93e47bbe3..b80e068c7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b9ef6de65b855b786c3973dd2d19b98500b42288f0fa0ad270fff58cbb2b87b -size 211786 +oid sha256:b8a1327623af061fac5614b2688e5e2dc16e57675638d787dc1fba994318051e +size 211360 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-pseudo-0.png index 9a86284d4..d4dfc7791 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f2f9509ad4173efbc5d31cd36e2090c4ef265556b512ba581d50bc419eef667 -size 219356 +oid sha256:80c7b216910c4b80ac13545263df7e79717ed2b5626ef91b6a2597fc997dcd10 +size 218931 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png index 96b44775d..a10b2d008 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5a3d15cb45d333c8262de10a8503b418b0df28b37922f569e5b5a1e67132450 -size 148474 +oid sha256:de60a3b1503467a33fcc30d4659b12d98e81ef6ba16b41dd19570ad28f189f77 +size 148033 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png index cba26a08a..5475684e7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8bfb5dce96a9bab1b0bf4ade63aaeecc90879618e29f7f23defa63e0be473957 -size 153708 +oid sha256:dd63447086e8ab914350a896927e72889226f5bc2cdb5142cc52ac31f7e6f1b8 +size 153209 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-en-GB-0.png index 2abe3a95e..e03977dc3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:072123b9dc8efb1766a0473bbaac4da41ca3753c498414174f7ed4498c7f4323 -size 296283 +oid sha256:71dea1c6708803b8f94ef428df31d6a788678ca2459087aa68f6842bfb406144 +size 293192 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-pseudo-0.png index 734e2c32c..6aab55f8e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b5603abfd37273553075d1aa62ef6dae6485293e740481d3f9cc0892b53c069 -size 304438 +oid sha256:e92403f8951eac64c503c938d35958bba7746b03406ebfac79f3fa49b68ff8a1 +size 301279 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png index 508a4a72a..d57ccffe2 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c31f30c2bb523cd9287eb7170f37db685e0338f43c86a20593df71e9b39a406b -size 181787 +oid sha256:6b25156145dd6a5487b6ab573232afc9e51177a259349d9658b833dad0a100e1 +size 176510 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png index fa1c0e06c..7edcd6b94 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1918575107e893df7a5c8d824e7d84f193bc95396dc9a70befb9035e2c15cc69 -size 180198 +oid sha256:c0a4a8242ede74f4dd53bba37fbac35ad5fa916bcf2a01ca03770f9c0878a06d +size 177246 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-en-GB-0.png index 6bebc3c7d..4e6a08224 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b80f7fccc39e2f0b27559a63768a95a68951e038d278bbdfd20a234df84f32b8 -size 103667 +oid sha256:767b39e58f19aff09a8ee3b99e2658c56113e598b0af38543e261692830f8c1a +size 103414 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-pseudo-0.png index 01e4c48d8..d17a18a49 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88af4b69ddea5faf65e4d36e5553c1bf0cdc9095f3eb31fbb6fc9e2933bd1dfc -size 105771 +oid sha256:9ed4b4ec12b87fe3d3ad6e2633044022ffca78b7d600141da2eb1e22c09ef150 +size 108825 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png index 6ccb1abc7..bee56f038 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6770b25d3438b9557a55e14a7ecb00b91fa0cc50d22c2115ccf5694bd97576c -size 54862 +oid sha256:c3b67fe2385e81ea111f9684125d0299137bed1ddf680372749548ffb5a49dcf +size 53475 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png index 5d88aaa3d..33f63eb3e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:924ee73990f5f009e691803dc007bab28adf25f9752b36bc6a11a53cbf953fef -size 58208 +oid sha256:80bd458d78e5fbe073eb4a433c186aa2fa8b5a149aa03647a79931d8c8f24f85 +size 57284 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-en-GB-0.png index 66aed5c1f..76e5100a1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09c375f314f98b32d97b6cd90bf63a9d34a84c568b5e43e200d92e4449c8a5bf -size 136045 +oid sha256:a2cb2c96ec13522a3d538f9817d2a343edfaa4e81bf7bbeeeed277c02821cea6 +size 139553 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-pseudo-0.png index 0ae8950ca..77eb899bf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63aec1964adbc232455dd679654d42d5c8896cba8fd0fa8941e2902eeac773ce -size 144073 +oid sha256:f8b7eb9fe0e3ef3622a3df3aa0723ec57a4ebf2288e1691c528cf3061694ed47 +size 147011 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png index d2e092fda..04d5c4819 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b3613401579464aaa90aca510c5438aed017f064e1761d9c01cb22eaa0969e5d -size 82553 +oid sha256:d200e37f6e389920d228570eb847e16c8ba31ad6e39f940e360634efc99d9dd4 +size 86725 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png index b96a83836..e24fb2f1a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:946460ea76327d9b6736a2ff6d8cde4a7cdad0cb3cc9dfdc227865faee09f04d -size 95519 +oid sha256:c27cd581de2405d4955849774dbf1a00113362bd7c5ecf9586c14f5dfa646f4c +size 99589 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-en-GB.png index 1e1505928..0555ea993 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50695c29b17006f678a1b40028323a1c2f61769aeaf9785677a48197d6d39ade -size 94053 +oid sha256:462ff8cacbdb1ee4e3d71966ded9b66c9c88fd636daf7f44f9564c3b60c7a0f6 +size 94098 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-pseudo.png index 6efd60905..213562427 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e5938b83a98fd1e5da611fa57003e2f3b63b1d926d433c7216809cce3d45368 -size 94323 +oid sha256:d4ba107a4892205a78bed7e0ae4cdf10090d840b57072fc5d60c0625428aebf2 +size 94381 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png index e70e51f6d..446f7c675 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0699768a4c2b4bb4930afe83f0d5089eac83d7f0623196443ecc246da5192920 -size 46351 +oid sha256:15057cf35724fe6752acd79205043c49b0a90e1eec3ee4c5445726655c83b04f +size 46391 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png index f901b8d13..ddcbbfb90 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Account-Owner-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cf68695dcc01e825fdab7c2e23dc12bc4bcdda2f80788ed12757e448e31ca0f -size 46975 +oid sha256:42f25a68a3bbb06a1473229a5f2be9f37c93f48b91871f34eaf954ddc4dbc9a3 +size 47048 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-en-GB.png index d5e1a24d7..22c99aed8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:129d6b5c1fdd5b6ef9b7e35fbd54c581a58534c804c8f6175ea9a00b26b153be -size 101599 +oid sha256:96ea7b69ff28dff663242a6e36c4532dd3d62a1a75e941c31c342f27677d42c6 +size 101530 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-pseudo.png index 169d8b268..0f0a50b13 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23d77c754954d9af3d2edd1997887754a7a1fb76eeaa36ebe5cbc177d255c3bd -size 102582 +oid sha256:c5df0fd017423ccad4f9125f2aaaf40a5f77021949425af2971d9c2f38ac49b9 +size 102532 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png index 6092f82d4..03e3ec771 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb29aed19d19b7ab40967e2154951205c03fdf8030b2c0fc499eddb860a5f99a -size 53194 +oid sha256:c26a656bfcb99c5ebe8b659b6a0bd420c68412c28b9d0e7c647e2514b2125ff1 +size 53101 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png index 5066e9c94..6a1f980c8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Other-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acc7ca89ab7f01a5b58501fa2c19b9af32fce4cb1ddead1f13399c311931caf6 -size 58631 +oid sha256:6644a548ae46954cef3b4fd1a469de093a1b03f7942bbdd8cb07b208cd60260a +size 58651 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-en-GB.png index d3318056d..5ed3eeb0a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:52c1ceb456b74d9e438dcec7fa0cf57b847cce2d235b22ffd838ed1d78c21c25 -size 104868 +oid sha256:f4922b3259927715ce20f28cee4300b684b29d380e32308c6fb8c7a28134ce80 +size 104815 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-pseudo.png index 1a5e17cbd..e89dd3954 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e433d055a3dee5d419c1fda00e49f4f128f84c61e4e60476b5215a3f41079c53 -size 106096 +oid sha256:def3691085c5251651989fe7ec9250a18ddab0379abbf777a332c23b6a81b0ae +size 106060 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png index 7dfb988f6..9e27aebe1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:74ef3a2aa4871fb6f77e9f4d859168f2f5aa9e859dbc8af6b8b7f78b2f766a7d -size 56039 +oid sha256:b7a26d9d2fc93d14c85c3db849af6584f1c9d10e53f14c098f16cff280887f00 +size 55967 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png index 4d0eb4ea6..d6014fa47 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileScreen.Verified-User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c6483cf1ed5bd83825e6b7864c2b3fe0fd6883c7419b75866f46fa57f1bc509 -size 62362 +oid sha256:63b41bc4a845938c111f439b4e92c338151c8f05064c6d7998be785b92bd315a +size 62387 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-en-GB-0.png index c76b844da..33058ad2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31a6d02b1e32398e728cde190b4d4c810e9b817523f219cc86084c5e43a5b4b6 -size 94161 +oid sha256:febaf96d78501754feb5154e09445b48d3121138430873224807ba94407b6693 +size 91571 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-pseudo-0.png index c76b844da..33058ad2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31a6d02b1e32398e728cde190b4d4c810e9b817523f219cc86084c5e43a5b4b6 -size 94161 +oid sha256:febaf96d78501754feb5154e09445b48d3121138430873224807ba94407b6693 +size 91571 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png index 3f8df1b91..8f4cbf7f7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:abcb7257e9950245ef9f4cd6380dbd4c5657d67ba14a8691f920a4253b0eb1a7 -size 82253 +oid sha256:7d4d05f884ea3efdf342ebdc7c9972bacf556665224e2ae22ba3f426b24e91e5 +size 79678 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png index 3f8df1b91..8f4cbf7f7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoMediaEventsTimelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:abcb7257e9950245ef9f4cd6380dbd4c5657d67ba14a8691f920a4253b0eb1a7 -size 82253 +oid sha256:7d4d05f884ea3efdf342ebdc7c9972bacf556665224e2ae22ba3f426b24e91e5 +size 79678 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png index 700c8e9d8..25832889b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7123a7340b8b9ed4ba0bbbf270a73254d56ff6c52185f38a1083f91e689ebf9d -size 1458680 +oid sha256:bee7198244fb294725722232c49557f12f8fb623c3f7e141ba3e782623b61812 +size 1430913 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png index 06e3fac12..82876ed60 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a8ac736f34d1e1bd34b9e25e229a8089ee7e36594538e4a573656ad51163331 -size 1452313 +oid sha256:71fbef2f7ebea259e82be3a406d87a2f626a274920c2294067971ff336484a6b +size 1422009 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-en-GB-0.png index 51272c2d5..41800ed2e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd8bd812dcad05c83e0c6c6032296a932ba780f02097df0a756ad47633462605 -size 69940 +oid sha256:b89cdb0b751bd50fdd5677ed9ad20286263e1bc3045088caee64af9399e267b2 +size 69939 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-pseudo-0.png index 51272c2d5..41800ed2e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd8bd812dcad05c83e0c6c6032296a932ba780f02097df0a756ad47633462605 -size 69940 +oid sha256:b89cdb0b751bd50fdd5677ed9ad20286263e1bc3045088caee64af9399e267b2 +size 69939 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png index 4da95cd52..9cf32a906 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d74b76bda470ea5d269ecfa582a7ab6b3258c71c2610637d79431c5f16698b24 +oid sha256:0968e165108397e29ca7f57d822ceb11e99c9b9fca2b75d6f4f64f584f71c7ed size 29146 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png index 4da95cd52..9cf32a906 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingComposer.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d74b76bda470ea5d269ecfa582a7ab6b3258c71c2610637d79431c5f16698b24 +oid sha256:0968e165108397e29ca7f57d822ceb11e99c9b9fca2b75d6f4f64f584f71c7ed size 29146 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-en-GB-0.png index 6d34c9a7d..e462e2208 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99b7ca0de4fbd7778001bcc5fb9a8ebbaa891154317dd83b46147c12c9110dd4 -size 68171 +oid sha256:68e3c0cd1e4e48e5104f605bd821465bbb30a991fb1e81d1a246c6c8cd6d1197 +size 68172 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-pseudo-0.png index 6d34c9a7d..e462e2208 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99b7ca0de4fbd7778001bcc5fb9a8ebbaa891154317dd83b46147c12c9110dd4 -size 68171 +oid sha256:68e3c0cd1e4e48e5104f605bd821465bbb30a991fb1e81d1a246c6c8cd6d1197 +size 68172 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png index 10ca16539..af39b0506 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e0819476b0c6971f29513aa93e91037c288a667405193c80a88a3b9f56e9968 +oid sha256:4dbf0feaa313f25e7c5a9665d318e02702da591afef57fdb61af2b12fab56357 size 27809 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png index 10ca16539..af39b0506 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e0819476b0c6971f29513aa93e91037c288a667405193c80a88a3b9f56e9968 +oid sha256:4dbf0feaa313f25e7c5a9665d318e02702da591afef57fdb61af2b12fab56357 size 27809 diff --git a/UnitTests/Sources/MediaUploadingPreprocessorTests.swift b/UnitTests/Sources/MediaUploadingPreprocessorTests.swift index 168c0e606..008eab1fd 100644 --- a/UnitTests/Sources/MediaUploadingPreprocessorTests.swift +++ b/UnitTests/Sources/MediaUploadingPreprocessorTests.swift @@ -337,7 +337,7 @@ final class MediaUploadingPreprocessorTests: XCTestCase { // Check resulting image info XCTAssertEqual(imageInfo.mimetype, "image/heic") XCTAssertEqual(imageInfo.blurhash, "KGD]3ns:T00$kWxFXmt6xv") - XCTAssertEqual(imageInfo.size ?? 0, 1_850_479, accuracy: 100) + XCTAssertEqual(imageInfo.size ?? 0, 1_848_525, accuracy: 100) XCTAssertEqual(imageInfo.width, 3024) XCTAssertEqual(imageInfo.height, 4032) diff --git a/project.yml b/project.yml index ce6269d07..d148d6e73 100644 --- a/project.yml +++ b/project.yml @@ -72,7 +72,7 @@ packages: # path: ../matrix-rust-sdk Compound: url: https://github.com/element-hq/compound-ios - revision: 3d3075fe0e3d011d886735fe7670c5ec715f1c35 + revision: 07563f32203a0a8c3a660cc9fc7cd59cdebcc34f # path: ../compound-ios AnalyticsEvents: url: https://github.com/matrix-org/matrix-analytics-events