This commit is contained in:
Kevin G Christiano 2021-01-07 09:14:07 -05:00
parent dabad14ed5
commit df5678f696

View File

@ -319,7 +319,10 @@ import UIKit
model.updateUIDynamicError = { [weak self] in
MVMCoreDispatchUtility.performBlock(onMainThread: {
guard let self = self, model.dynamicErrorMessage != nil else { return }
guard let self = self,
model.dynamicErrorMessage != nil
else { return }
model.isValid = false
self.updateValidation(model.isValid ?? false)
})