@AppStorage not updating views correctly

I'm using @AppStorage to store an Int value, and I have a Text view that uses this value.

I also have a Button that increments this value, but the Text view is not updating correctly when the value changes.

It's a hit or miss. Sometime the view updates right away, sometimes it doesn't. Relaunching the app reflects the updated values. Is this a bug?
I'm experiencing this too. I have to explicitly call objectWillChange.send() for the change to propagate. For example:

Code Block
@AppStorage("lineHeight") var lineHeight = "1.0" {
willSet { objectWillChange.send() }
}


I'm not sure if this is a beta bug or the intended behavior.
@AppStorage not updating views correctly
 
 
Q