Skip to content

Commit

Permalink
feat(lobby) removed native lobby enable/disable dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinteodor committed Jan 25, 2022
1 parent b555188 commit bc4553b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 176 deletions.
20 changes: 0 additions & 20 deletions react/features/lobby/actions.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import { type Dispatch } from 'redux';

import { appNavigate } from '../app/actions';
import { openDialog } from '../base/dialog';

import { DisableLobbyModeDialog, EnableLobbyModeDialog } from './components/native';

export * from './actions.any';

Expand All @@ -20,20 +17,3 @@ export function cancelKnocking() {
};
}

/**
* Action to show the dialog to disable lobby mode.
*
* @returns {showNotification}
*/
export function showDisableLobbyModeDialog() {
return openDialog(DisableLobbyModeDialog);
}

/**
* Action to show the dialog to enable lobby mode.
*
* @returns {showNotification}
*/
export function showEnableLobbyModeDialog() {
return openDialog(EnableLobbyModeDialog);
}
60 changes: 0 additions & 60 deletions react/features/lobby/components/native/DisableLobbyModeDialog.js

This file was deleted.

94 changes: 0 additions & 94 deletions react/features/lobby/components/native/EnableLobbyModeDialog.js

This file was deleted.

2 changes: 0 additions & 2 deletions react/features/lobby/components/native/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
// @flow

export { default as DisableLobbyModeDialog } from './DisableLobbyModeDialog';
export { default as EnableLobbyModeDialog } from './EnableLobbyModeDialog';
export { default as KnockingParticipantList } from './KnockingParticipantList';
export { default as LobbyScreen } from './LobbyScreen';

0 comments on commit bc4553b

Please sign in to comment.