diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/LockUps/TitleLockupModel.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/LockUps/TitleLockupModel.swift index e757fb3b..3112cc2e 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/LockUps/TitleLockupModel.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/LockUps/TitleLockupModel.swift @@ -49,10 +49,13 @@ public class TitleLockupModel: ParentMoleculeModelProtocol { public func isEqual(to model: any ModelComparisonProtocol) -> Bool { guard let model = model as? Self else { return false } return textAlignment == model.textAlignment - && subTitleColor == model.subTitleColor && alignment == model.alignment + && titleColor == model.titleColor + && subTitleColor == model.subTitleColor && inverted == model.inverted && backgroundColor == model.backgroundColor + && eyebrow.matchExistence(with: model.eyebrow) + && subTitle.matchExistence(with: model.subTitle) } //--------------------------------------------------