diff --git a/src/views/PrincipalDistributors/UploadOpeningInventory.js b/src/views/PrincipalDistributors/UploadOpeningInventory.js index cdd41f8..d2c503e 100644 --- a/src/views/PrincipalDistributors/UploadOpeningInventory.js +++ b/src/views/PrincipalDistributors/UploadOpeningInventory.js @@ -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",