Skip to content

Commit

Permalink
Save request in raw request state bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman-Hundal committed Nov 28, 2023
1 parent 639e8c0 commit 1343ece
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const BottomButtonGroup = React.memo(

//add oipc Data to save request object and sync/validate isoipcreview attribute
saveRequestObject.oipcdetails = oipcData;
if (oipcData.length > 0) {
if (oipcData?.length > 0) {
saveRequestObject.isoipcreview = true;
} else {
saveRequestObject.isoipcreview = false;
Expand Down

0 comments on commit 1343ece

Please sign in to comment.