import { toast } from "sonner"; import { ErrorNotification } from "@/src/features/notifications/ErrorNotification"; const toastErrorStyleProps = { border: "1px solid hsl(var(--destructive))", backgroundColor: "hsl(var(--destructive))", }; const toastWarningStyleProps = { border: "1px solid hsl(var(--light-yellow))", backgroundColor: "hsl(var(--light-yellow))", }; export const showErrorToast = ( error: string, description: string, type: "WARNING" | "ERROR" = "ERROR", path?: string, ) => { toast.custom( (t) => ( ), { duration: Infinity, style: { padding: "1rem", borderRadius: "0.5rem", ...(type === "ERROR" ? toastErrorStyleProps : toastWarningStyleProps), }, }, ); };