11 lines
311 B
JavaScript
11 lines
311 B
JavaScript
"use client";
|
|
import { toast } from "react-toastify";
|
|
import { successToast } from "@/core/components/toasts/success";
|
|
|
|
export const successRequest = (notification, toastContainer) => {
|
|
if (notification) {
|
|
toast.dismiss({ container: toastContainer });
|
|
successToast(toastContainer);
|
|
}
|
|
};
|