diff --git a/src/components/Screens/WebSectionList.js b/src/components/Screens/WebSectionList.js index 8317d8a..08f9b86 100644 --- a/src/components/Screens/WebSectionList.js +++ b/src/components/Screens/WebSectionList.js @@ -99,7 +99,9 @@ class WebSectionList extends React.PureComponent, StateType> { */ onScreenFocus = () => { const {props} = this; - if (props.refreshOnFocus && this.lastRefresh) this.onRefresh(); + if (props.refreshOnFocus && this.lastRefresh) { + setTimeout(this.onRefresh, 200); + } if (props.autoRefreshTime > 0) this.refreshInterval = setInterval(this.onRefresh, props.autoRefreshTime); };