···11-import {makeAutoObservable} from 'mobx'
11+import {makeAutoObservable, runInAction} from 'mobx'
22import {RootStoreModel} from '../root-store'
33import {ProfileModel} from '../content/profile'
44import {PostsFeedModel} from '../feeds/posts'
···228228 .setup()
229229 .catch(err => this.rootStore.log.error('Failed to fetch feed', err)),
230230 ])
231231- this.isAuthenticatedUser =
232232- this.profile.did === this.rootStore.session.currentSession?.did
231231+ runInAction(() => {
232232+ this.isAuthenticatedUser =
233233+ this.profile.did === this.rootStore.session.currentSession?.did
234234+ })
233235 this.algos.refresh()
234236 // HACK: need to use the DID as a param, not the username -prf
235237 this.lists.source = this.profile.did