Skip to content

Commit

Permalink
fix: swiftformat
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIhnatsiuk committed Oct 27, 2024
1 parent 2621980 commit 1d3f369
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ios/AdvancedTextInputMaskDecoratorView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ class AdvancedTextInputMaskDecoratorView: UIView {

@objc var onAdvancedMaskTextChange: RCTDirectEventBlock?

@objc var onAdvancedMaskTextChangedCallback: (_ extracted: String, _ formatted: String, _ tailPlaceholder: String) -> Void {
@objc var onAdvancedMaskTextChangedCallback: (
_ extracted: String,
_ formatted: String,
_ tailPlaceholder: String
) -> Void {
{ [weak self] extracted, formatted, tailPlaceholder in
guard let self = self else { return }

Expand Down

0 comments on commit 1d3f369

Please sign in to comment.