Skip to content

Commit

Permalink
🚨 Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed Nov 29, 2023
1 parent 7fd919c commit f8b7b87
Showing 1 changed file with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ internal class ExperienceWrapperViewController<BodyView: ExperienceWrapperView>:
}

override func viewDidLoad() {
super.viewDidLoad()

NotificationCenter.default.addObserver(
self,
selector: #selector(adjustForKeyboard),
name: UIResponder.keyboardWillHideNotification,
object: nil
)
NotificationCenter.default.addObserver(
self,
selector: #selector(adjustForKeyboard),
name: UIResponder.keyboardWillChangeFrameNotification,
object: nil
)
}
super.viewDidLoad()

NotificationCenter.default.addObserver(
self,
selector: #selector(adjustForKeyboard),
name: UIResponder.keyboardWillHideNotification,
object: nil
)
NotificationCenter.default.addObserver(
self,
selector: #selector(adjustForKeyboard),
name: UIResponder.keyboardWillChangeFrameNotification,
object: nil
)
}

@discardableResult
func configureStyle(_ style: ExperienceComponent.Style?, transition: AppcuesModalTrait.Transition = .fade) -> Self {
Expand Down

0 comments on commit f8b7b87

Please sign in to comment.