Fix Address-Lookup error
This commit is contained in:
parent
71c7d78772
commit
5f2bce2415
1 changed files with 3 additions and 0 deletions
|
|
@ -2172,6 +2172,9 @@ function convertGlassPieceToBackEndCompatibleFormat(glassPieces) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function providersEqual(providerA, providerB) {
|
function providersEqual(providerA, providerB) {
|
||||||
|
if (!providerA) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
providerA.providerNumber === providerB.providerNumber &&
|
providerA.providerNumber === providerB.providerNumber &&
|
||||||
providerA.address?.city === providerB.address?.city &&
|
providerA.address?.city === providerB.address?.city &&
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue