This commit is contained in:
Zhiyuan Zheng 2021-03-19 21:33:03 +01:00
parent 73d6703e56
commit e620754c15
No known key found for this signature in database
GPG Key ID: 078A93AB607D85E0
1 changed files with 8 additions and 1 deletions

View File

@ -280,7 +280,14 @@ const ScreenCompose: React.FC<ScreenComposeProp> = ({
composePost(params, composeState)
.then(() => {
haptics('Success')
dispatch(updateStoreReview(1))
if (
Platform.OS === 'ios' &&
Platform.constants.osVersion === '13.3'
) {
// https://github.com/tooot-app/app/issues/59
} else {
dispatch(updateStoreReview(1))
}
const queryKey: QueryKeyTimeline = [
'Timeline',
{ page: 'Following' }