// import { useEffect } from "react"; import { ChatPrefixes } from "../../../app/config"; import { useTranslation } from "react-i18next"; type Props = { context: "user" | "channel", name: string }; const DnDTip = ({ context, name }: Props) => { const { t } = useTranslation("chat"); return (