diff --git a/react/features/base/dialog/components/native/BaseDialog.js b/react/features/base/dialog/components/native/BaseDialog.js index 4bf23522e1..0a45a58076 100644 --- a/react/features/base/dialog/components/native/BaseDialog.js +++ b/react/features/base/dialog/components/native/BaseDialog.js @@ -4,6 +4,7 @@ import React from 'react'; import { Text, TouchableOpacity, + TouchableWithoutFeedback, View } from 'react-native'; @@ -51,28 +52,29 @@ class BaseDialog extends AbstractDialog { const { _dialogStyles, style } = this.props; return ( - + - - - - { this._renderContent() } + + + + + { this._renderContent() } + - + ); }