I'm getting an issue with some state that I don't ...
# compose
c
I'm getting an issue with some state that I don't think is updating correctly. Does this seem suspicious to anyone? I have a hunch that it's the root cause of my issue.
Copy code
MaterialTheme {
    val myState by myViewModel.state.collectAsStateWithLifecycle()
    val myList = myState.foo[KEY]?.items.orEmpty() <===== This doesn't seem to always update correctly
}