Hi there, I've got an error during validation of address existence in case when it does not belong to any customer: see `AddressExistsValidator` ```php if ($address->getCustomer()->getEmail() !== $user->getEmail()) { return $this->context->addViolation($constraint->message); } ```
Hi there,
I've got an error during validation of address existence in case when it does not belong to any customer:
see
AddressExistsValidator