wrap mutation in runInAction (#1305)

This commit is contained in:
Eric Bailey
2023-08-28 13:55:56 -05:00
committed by GitHub
parent a3cb12f584
commit c77fd588e9
+4 -1
View File
@@ -1,4 +1,5 @@
import React, {useRef} from 'react'
import {runInAction} from 'mobx'
import {observer} from 'mobx-react-lite'
import {
ActivityIndicator,
@@ -361,7 +362,9 @@ function* flattenThread(
}
}
} else if (!isAscending && !post.parent && post.post.replyCount) {
post._hasMore = true
runInAction(() => {
post._hasMore = true
})
}
}