wrap mutation in runInAction (#1305)
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
import React, {useRef} from 'react'
|
import React, {useRef} from 'react'
|
||||||
|
import {runInAction} from 'mobx'
|
||||||
import {observer} from 'mobx-react-lite'
|
import {observer} from 'mobx-react-lite'
|
||||||
import {
|
import {
|
||||||
ActivityIndicator,
|
ActivityIndicator,
|
||||||
@@ -361,7 +362,9 @@ function* flattenThread(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (!isAscending && !post.parent && post.post.replyCount) {
|
} else if (!isAscending && !post.parent && post.post.replyCount) {
|
||||||
post._hasMore = true
|
runInAction(() => {
|
||||||
|
post._hasMore = true
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user