fixes enum ==, changes frames

This commit is contained in:
Stuart Breckenridge
2020-07-13 22:51:09 +08:00
parent f4d776688b
commit 8a66c368cd
3 changed files with 5 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ class AddAccountModel: ObservableObject {
case (.other(let lhsError), .other(let rhsError)):
return lhsError.localizedDescription == rhsError.localizedDescription
default:
return lhs == rhs
return false
}
}
}