bug fixed

This commit is contained in:
Sibunnayak 2024-11-02 12:16:52 +05:30
parent e9fe97e261
commit 53ea691e44

View File

@ -68,7 +68,7 @@ const UploadOpeningInventory = () => {
}
// Redirect or display success message
if (data?.errors && data?.errors.length > 0) {
if (data?.errors && data?.errors?.length > 0) {
setErrors(data?.errors);
swal({
title: "SpreadSheet Upload Successful",
@ -77,8 +77,8 @@ const UploadOpeningInventory = () => {
button: "OK",
});
} else if (
data?.newlyCreated.length > 0 ||
data?.updatedInventories.length > 0
data?.newlyCreated?.length > 0 ||
data?.updatedOpeningInventories?.length > 0
) {
swal({
title: "SpreadSheet Upload Successful",