Skip to content

Commit

Permalink
IBX-8184: CS
Browse files Browse the repository at this point in the history
  • Loading branch information
barw4 committed May 9, 2024
1 parent 32e9b21 commit 6e36292
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const checkIsEmpty = (field) => {
}

return {
isValid: input ? input.value : true,
isValid: input?.value ?? true,
errorMessage,
};
};
Expand Down

0 comments on commit 6e36292

Please sign in to comment.