diff --git a/src/home/JoinExistingCallModal.tsx b/src/home/JoinExistingCallModal.tsx index 8f4f7d7f..b04c6ae5 100644 --- a/src/home/JoinExistingCallModal.tsx +++ b/src/home/JoinExistingCallModal.tsx @@ -25,7 +25,7 @@ import styles from "./JoinExistingCallModal.module.css"; interface Props { onJoin: (e: PressEvent) => void; - onClose: (e: PressEvent) => void; + onClose: () => void; // TODO: add used parameters for [index: string]: unknown; } @@ -33,7 +33,12 @@ export function JoinExistingCallModal({ onJoin, onClose, ...rest }: Props) { const { t } = useTranslation(); return ( - +

{t("This call already exists, would you like to join?")}