Skip to content

Commit

Permalink
Fix missing escaping declaration for SubmitHandler for in-place custo…
Browse files Browse the repository at this point in the history
…m keyboard modifier
  • Loading branch information
paescebu committed Nov 20, 2024
1 parent 303c041 commit a9f1cd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Combine
@_spi(Advanced) import SwiftUIIntrospect

public extension View {
func customKeyboard(view: @escaping (UITextDocumentProxy, CustomKeyboardBuilder.SubmitHandler, CustomKeyboardBuilder.SystemFeedbackHandler?) -> some View) -> some View {
func customKeyboard(view: @escaping (UITextDocumentProxy, @escaping CustomKeyboardBuilder.SubmitHandler, CustomKeyboardBuilder.SystemFeedbackHandler?) -> some View) -> some View {
customKeyboard(CustomKeyboardBuilder(customKeyboardView: view))
}
}
Expand Down

0 comments on commit a9f1cd6

Please sign in to comment.