Digital PCT265 story PCT-135: Code review fix in AlertModel equality check.

This commit is contained in:
Hedden, Kyle Matthew 2024-05-29 17:25:43 -04:00
parent 0a3186ad2e
commit 6d8f8bd298

View File

@ -159,7 +159,7 @@ public struct AlertModel: Codable, Identifiable, Equatable, AlertModelProtocol {
public static func == (lhs: AlertModel, rhs: AlertModel) -> Bool {
lhs.title == rhs.title
&& lhs.message == rhs.title
&& lhs.message == rhs.message
&& lhs.preferredStyle == rhs.preferredStyle
&& lhs.buttonModels == rhs.buttonModels
&& lhs.analyticsData == rhs.analyticsData