Skip to content

Commit

Permalink
Restored ChatView to its previous state
Browse files Browse the repository at this point in the history
  • Loading branch information
muniz95 committed Dec 22, 2023
1 parent 57215a7 commit e56eae4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/views/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand All @@ -17,10 +16,9 @@ const Chat = () => {

}, [dispatchSetSecondLevel]);
return (
// <div className="home">
// {t("title")}
// </div>
<VoiceCall contactName="Teste" type="received" phone="9999-9999" />
<div className="home">
{t("title")}
</div>
)
};

Expand Down

0 comments on commit e56eae4

Please sign in to comment.