SwiftUI & Combine Documentation Issue

I’m working through the “Use Realm Database with SwiftUI and Combine” tutorial at: https://docs.mongodb.com/realm/sdk/ios/integrations/swiftui/

I have cut and pasted the code as displayed in the tutorial.

On initial build and install the app hangs with the spinner running until I tap the screen. I can then add some items, edit etc. fine. Subsequent builds produce the following error message, although the app seems to work fine: MongoRealm2[50297:75462495] [] nw_protocol_get_quic_image_block_invoke dlopen libquic failed

I’m testing on both the simulator and device.

I’m assuming the initial progress spinner is due to there not being any groups, but the subsequent error shouldn’t be there?

I’m on macOS 11.4, with Xcode v12.5.1

That could be caused by an old CocoaPods version or Realm SDK version. Can you include those?

pod --version

We also saw this happen a while back relating to a undefined delegate. I think it’s happening after Big Sur.

pod version = 1.10.1
Realm 10.15.0
RealmDatabase 11.4.1

I should mention, I installed the SDK with SwiftPM
also that I’m still very much a novice to Swift and iOS development in general