diff --git a/react/features/base/react/components/native/SlidingView.js b/react/features/base/react/components/native/SlidingView.js index 10712927c..6a2305b83 100644 --- a/react/features/base/react/components/native/SlidingView.js +++ b/react/features/base/react/components/native/SlidingView.js @@ -264,7 +264,9 @@ export default class SlidingView extends PureComponent { }) .start(({ finished }) => { finished && this._mounted && !show - && this.setState({ showOverlay: false }); + && this.setState({ showOverlay: false }, () => { + this.forceUpdate(); + }); resolve(); }); });