Skip to content

Commit

Permalink
Merge pull request #184 from virtualidentityag/staging-2023-09-04
Browse files Browse the repository at this point in the history
Staging 2023 09 04
  • Loading branch information
tkuzynow authored Sep 4, 2023
2 parents dfb8cd1 + b0258bd commit 51471d1
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 51471d1

Please sign in to comment.