diff --git a/src/views/Chat.tsx b/src/views/Chat.tsx index 916c161..2cc5e82 100644 --- a/src/views/Chat.tsx +++ b/src/views/Chat.tsx @@ -2,7 +2,6 @@ import React from "react"; import { useDispatch } from "react-redux"; import { setSecondLevel } from "../redux/actions"; import { useTranslation } from "react-i18next"; -import VoiceCall from "components/VoiceCall"; const Chat = () => { const { t } = useTranslation(['chat']); @@ -17,10 +16,9 @@ const Chat = () => { }, [dispatchSetSecondLevel]); return ( - //
- // {t("title")} - //
- +
+ {t("title")} +
) };