Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

wrap mutation in runInAction (#1305)

authored by

Eric Bailey and committed by
GitHub
c77fd588 a3cb12f5

+4 -1
+4 -1
src/view/com/post-thread/PostThread.tsx
··· 1 1 import React, {useRef} from 'react' 2 + import {runInAction} from 'mobx' 2 3 import {observer} from 'mobx-react-lite' 3 4 import { 4 5 ActivityIndicator, ··· 361 362 } 362 363 } 363 364 } else if (!isAscending && !post.parent && post.post.replyCount) { 364 - post._hasMore = true 365 + runInAction(() => { 366 + post._hasMore = true 367 + }) 365 368 } 366 369 } 367 370