diff --git a/react/features/conference/components/Conference.native.js b/react/features/conference/components/Conference.native.js index 6f2ff2f15..3711395fc 100644 --- a/react/features/conference/components/Conference.native.js +++ b/react/features/conference/components/Conference.native.js @@ -228,7 +228,7 @@ function _mapDispatchToProps(dispatch) { * @private */ _onConnect() { - return dispatch(connect()); + dispatch(connect()); }, /** @@ -238,7 +238,7 @@ function _mapDispatchToProps(dispatch) { * @private */ _onDisconnect() { - return dispatch(disconnect()); + dispatch(disconnect()); }, /** @@ -250,7 +250,7 @@ function _mapDispatchToProps(dispatch) { * @private */ _setToolboxVisible(visible: boolean) { - return dispatch(setToolboxVisible(visible)); + dispatch(setToolboxVisible(visible)); } }; } diff --git a/react/features/overlay/components/ReloadButton.js b/react/features/overlay/components/ReloadButton.js index 42b6de463..01059c612 100644 --- a/react/features/overlay/components/ReloadButton.js +++ b/react/features/overlay/components/ReloadButton.js @@ -79,7 +79,7 @@ function _mapDispatchToProps(dispatch: Function): Object { * @returns {Object} Dispatched action. */ _reloadNow() { - return dispatch(_reloadNow()); + dispatch(_reloadNow()); } }; } diff --git a/react/features/toolbox/components/SecondaryToolbar.web.js b/react/features/toolbox/components/SecondaryToolbar.web.js index 820d88bd2..b9cd2d17e 100644 --- a/react/features/toolbox/components/SecondaryToolbar.web.js +++ b/react/features/toolbox/components/SecondaryToolbar.web.js @@ -121,7 +121,7 @@ function _mapDispatchToProps(dispatch: Function): Object { * @returns {Object} Dispatched action. */ _onSideToolbarContainerToggled(containerId: string) { - return dispatch(toggleSideToolbarContainer(containerId)); + dispatch(toggleSideToolbarContainer(containerId)); } }; } diff --git a/react/features/toolbox/components/Toolbox.native.js b/react/features/toolbox/components/Toolbox.native.js index b328575fe..d066cb0ae 100644 --- a/react/features/toolbox/components/Toolbox.native.js +++ b/react/features/toolbox/components/Toolbox.native.js @@ -268,7 +268,7 @@ function _mapDispatchToProps(dispatch) { * @type {Function} */ _onRoomLock() { - return dispatch(beginRoomLockRequest()); + dispatch(beginRoomLockRequest()); }, /** @@ -279,7 +279,7 @@ function _mapDispatchToProps(dispatch) { * @type {Function} */ _onShareRoom() { - return dispatch(beginShareRoom()); + dispatch(beginShareRoom()); }, /** @@ -290,7 +290,7 @@ function _mapDispatchToProps(dispatch) { * @type {Function} */ _onToggleAudioOnly() { - return dispatch(toggleAudioOnly()); + dispatch(toggleAudioOnly()); }, /** @@ -302,7 +302,7 @@ function _mapDispatchToProps(dispatch) { * @type {Function} */ _onToggleCameraFacingMode() { - return dispatch(toggleCameraFacingMode()); + dispatch(toggleCameraFacingMode()); } }; } diff --git a/react/features/toolbox/functions.native.js b/react/features/toolbox/functions.native.js index ec4ce6b50..6555b5783 100644 --- a/react/features/toolbox/functions.native.js +++ b/react/features/toolbox/functions.native.js @@ -31,7 +31,7 @@ export function abstractMapDispatchToProps(dispatch: Dispatch<*>): Object { // business to know that anyway. The undefined value is our // expression of (1) the lack of knowledge & (2) the desire to no // longer have a valid room name to join. - return dispatch(appNavigate(undefined)); + dispatch(appNavigate(undefined)); }, /** @@ -43,7 +43,7 @@ export function abstractMapDispatchToProps(dispatch: Dispatch<*>): Object { * @type {Function} */ _onToggleAudio() { - return dispatch(toggleAudioMuted()); + dispatch(toggleAudioMuted()); }, /** @@ -54,7 +54,7 @@ export function abstractMapDispatchToProps(dispatch: Dispatch<*>): Object { * @type {Function} */ _onToggleVideo() { - return dispatch(toggleVideoMuted()); + dispatch(toggleVideoMuted()); } }; }