From 693dbd88b3cf9621c8bf922311391da915c4f05f Mon Sep 17 00:00:00 2001 From: Amirhossein Mahmoodi Date: Wed, 10 Jul 2024 13:03:46 +0330 Subject: [PATCH] fixed bug --- src/core/utils/errorResponse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils/errorResponse.js b/src/core/utils/errorResponse.js index 1802581..47317bd 100644 --- a/src/core/utils/errorResponse.js +++ b/src/core/utils/errorResponse.js @@ -7,7 +7,7 @@ import { errorTooManyToast, errorUnauthorizedToast, errorValidationToast, -} from "@/core/components/toasts/error"; +} from "@/core/components/Toasts/error"; const isServerError = (status) => status >= 500 && status <= 599; const isClientError = (status) => status >= 400 && status <= 499;