diff --git a/react/features/base/dialog/components/Dialog.native.js b/react/features/base/dialog/components/Dialog.native.js index 501396d46..5be943e86 100644 --- a/react/features/base/dialog/components/Dialog.native.js +++ b/react/features/base/dialog/components/Dialog.native.js @@ -76,7 +76,9 @@ class Dialog extends AbstractDialog { constructor(props: Object) { super(props); - this.state.text = ''; + this.state = { + text: '' + }; // Bind event handlers so they are only bound once per instance. this._onChangeText = this._onChangeText.bind(this);