CallScreen interactivity fixes

This commit is contained in:
Fedor Indutny 2021-09-17 17:20:29 -07:00 committed by GitHub
parent 427055ea47
commit 4dcbb7352f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 64 additions and 37 deletions

View file

@ -1,7 +1,7 @@
// Copyright 2020-2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import React, { ReactNode } from 'react';
import classNames from 'classnames';
import { LocalizerType } from '../types/Util';
import { Tooltip } from './Tooltip';
@ -11,7 +11,7 @@ export type PropsType = {
i18n: LocalizerType;
isInSpeakerView?: boolean;
isGroupCall?: boolean;
message?: string;
message?: ReactNode;
onCancel?: () => void;
participantCount: number;
showParticipantsList: boolean;