Skip to content

Commit

Permalink
fix(live chat): remove e2ee video call block page
Browse files Browse the repository at this point in the history
  • Loading branch information
RunzelRosinchen committed Aug 28, 2023
1 parent 3de465b commit 93c9cef
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/waitingRoom/WaitingRoom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ import { StageLayout } from '../stageLayout/StageLayout';
import { appConfig } from '../../utils/appConfig';
import { Loading } from '../app/Loading';
import { GlobalComponentContext } from '../../globalState/provider/GlobalComponentContext';
import { supportsE2EEncryptionVideoCall } from '../../utils/videoCallHelpers';
import { E2EEncryptionSupportHelp } from '../E2EEncryptionSupportHelp/E2EEncryptionSupportHelp';
export interface WaitingRoomProps {
consultingTypeSlug: string;
consultingTypeId: number;
Expand Down Expand Up @@ -269,9 +267,7 @@ export const WaitingRoom = (props: WaitingRoomProps) => {
};

const getContent = () => {
if (!supportsE2EEncryptionVideoCall()) {
return <E2EEncryptionSupportHelp />;
} else if (isDataProtectionViewActive) {
if (isDataProtectionViewActive) {
return (
<WaitingRoomContent
showRegistrationInfo={false}
Expand Down

0 comments on commit 93c9cef

Please sign in to comment.