I’ve been running into an issue on realm-swift 10.25.0 where editing a field with the bindings such as:
@ObservedRealmObject var address: Address
TextField("City", text: $address.city)
If I type too fast (meaning, still slower than regular speed) the whole app freezes with an error like this:
Binding action tried to update multiple times per frame.
I’m currently moving toward storing strings in state variables and updating Realm objects on completion just to get around it, but wondering if anyone else is seeing this happen or if there is a way to make sure that it doesn’t happen?