Skip to content

Commit

Permalink
Fix name clash when using Kotlin 1.9.21 (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
etienneasselin authored Jan 4, 2024
1 parent f5612da commit 570ea02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extension UITextField {
observe(inputTextViewModel.editorAction) { [weak self] (action: InputTextEditorAction) in
if action != ViewModelAction.Companion.init().None {
self?.addAction(events: .editingDidEndOnExit, { _ in
action.execute()
action.execute(actionContext: nil)
})
} else {
self?.removeAction(events: .editingDidEndOnExit)
Expand Down

0 comments on commit 570ea02

Please sign in to comment.