diff --git a/apps/ios/WatchApp/Sources/WatchConnectivityReceiver.swift b/apps/ios/WatchApp/Sources/WatchConnectivityReceiver.swift index 5331db730710..a90f2bd2fcc4 100644 --- a/apps/ios/WatchApp/Sources/WatchConnectivityReceiver.swift +++ b/apps/ios/WatchApp/Sources/WatchConnectivityReceiver.swift @@ -624,9 +624,6 @@ final class WatchConnectivityReceiver: NSObject, @unchecked Sendable { if let gatewayStableID = WatchGatewayID.exact(message.gatewayStableID) { payload["gatewayStableID"] = gatewayStableID } - if let approvalInstanceId = message.approvalInstanceId, !approvalInstanceId.isEmpty { - payload["approvalInstanceId"] = approvalInstanceId - } if let text = message.text?.trimmingCharacters(in: .whitespacesAndNewlines), !text.isEmpty { @@ -675,6 +672,9 @@ final class WatchConnectivityReceiver: NSObject, @unchecked Sendable { if let gatewayStableID = WatchGatewayID.exact(message.gatewayStableID) { payload["gatewayStableID"] = gatewayStableID } + if let approvalInstanceId = message.approvalInstanceId, !approvalInstanceId.isEmpty { + payload["approvalInstanceId"] = approvalInstanceId + } if let sentAtMs = message.sentAtMs { payload["sentAtMs"] = sentAtMs }