iOS App creates and uses Default Realm after opening synced Realm in SwiftUI

If I declare an @ObservedResults var in my SwiftUI View it creates and connects with the default realm instead of the already open synced realm. The displayed objects and any added objects go into the default realm and are not synced to Atlas. If I use ObservedResults in the realm publisher’s receiveValue: closure immediately upon opening the realm, it works as expected and contains objects from the correct (synced) realm.