Skip to content

Commit

Permalink
Fix a compiler error in Xcode 13 (#2162)
Browse files Browse the repository at this point in the history
Co-authored-by: Mathias Claassen <mathias@xmartlabs.com>
  • Loading branch information
zacwest and mats-claassen committed Oct 29, 2021
1 parent 1176065 commit 6f779ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Cell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ open class BaseCell: UITableViewCell, BaseCellType {
if let formVC = responder as? FormViewController {
return formVC
}
responder = responder?.next
responder = (responder as? UIResponder)?.next
}
return nil
}
Expand Down

0 comments on commit 6f779ae

Please sign in to comment.