import { useTranslation } from "react-i18next"; import { useChatContext } from "@/lib/context"; export const ChatHeader = (): JSX.Element => { const { t } = useTranslation(["chat"]); const { history } = useChatContext(); if (history.length !== 0) { return (