[BUG] State Flow From launchPagingStore
Does Not Reflect Latest Writes in Mutable Store
#602
Labels
bug
Something isn't working
Summary
Updates made through write operations to mutable store are not being accurately reflected in the
StateFlow
returned bylaunchPagingStore
.Description
Expected behavior is any write operation to a mutable store should be observed in the
StateFlow
emitted bylaunchPagingStore
. However, it appears that after performing a write operation, the state flow still reflects the state of the store prior to the write.Steps To Reproduce
launchPagingStore
on the mutable store.launchPagingStore
does not reflect the changes made by the write operation.Failing Test
Investigation So Far
stream
from mutable store is not correctly observing updates. However, I verifiedstream
is correctly observing updates.The text was updated successfully, but these errors were encountered: