Fix Address-Lookup error

This commit is contained in:
Scott Kiener 2023-07-27 15:32:14 -04:00
parent 71c7d78772
commit 5f2bce2415

View file

@ -2172,6 +2172,9 @@ function convertGlassPieceToBackEndCompatibleFormat(glassPieces) {
}
function providersEqual(providerA, providerB) {
if (!providerA) {
return false;
}
return (
providerA.providerNumber === providerB.providerNumber &&
providerA.address?.city === providerB.address?.city &&