diff --git a/src/store/index.js b/src/store/index.js index c3c9fc8a0..44b1c0864 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -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 &&