import toast, { Toast } from "react-hot-toast"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface ErrorToastProps { id: Toast["id"]; error: string; } export function ErrorToast({ id, error }: ErrorToastProps) { const { t } = useTranslation(); return (