mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
22 lines
489 B
JavaScript
22 lines
489 B
JavaScript
import { toast } from "react-toastify";
|
|
import { i18n } from "../translate/i18n";
|
|
|
|
const toastError = err => {
|
|
const errorMsg = err.response?.data?.message || err.response.data.error;
|
|
if (errorMsg) {
|
|
if (i18n.exists(`backendErrors.${errorMsg}`)) {
|
|
toast.error(i18n.t(`backendErrors.${errorMsg}`), {
|
|
toastId: errorMsg,
|
|
});
|
|
} else {
|
|
toast.error(errorMsg, {
|
|
toastId: errorMsg,
|
|
});
|
|
}
|
|
} else {
|
|
toast.error("An error occurred!");
|
|
}
|
|
};
|
|
|
|
export default toastError;
|