From 7f09636b2effd484cde2b406ceabba5822529efa Mon Sep 17 00:00:00 2001 From: Pat Nakajima Date: Wed, 7 Feb 2024 14:05:09 -0600 Subject: [PATCH] fix lint --- XMTPiOSExample/XMTPiOSExample/Views/GroupSettingsView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/XMTPiOSExample/XMTPiOSExample/Views/GroupSettingsView.swift b/XMTPiOSExample/XMTPiOSExample/Views/GroupSettingsView.swift index ae152465..87a66376 100644 --- a/XMTPiOSExample/XMTPiOSExample/Views/GroupSettingsView.swift +++ b/XMTPiOSExample/XMTPiOSExample/Views/GroupSettingsView.swift @@ -114,7 +114,9 @@ struct GroupSettingsView: View { } private func syncGroupMembers() async { + // swiftlint:disable no_optional_try try? await group.sync() + // swiftlint:enable no_optional_try await MainActor.run { self.groupMembers = group.memberAddresses }