I never see the output html change to authenticated as it should, and computed! is never printed to the console. I know the document is correctly loading and authUser is populated because I have other code that reads data from userDoc.
Do you know how I can get my mobx store to correctly listen for changes to the Document?
I have a Mobx Store with a computed that observes the
hasData
field in theuserDoc
Document
:I never see the output html change to
authenticated
as it should, andcomputed!
is never printed to the console. I know the document is correctly loading andauthUser
is populated because I have other code that reads data fromuserDoc
.Do you know how I can get my mobx store to correctly listen for changes to the
Document
?