Skip to content

Commit

Permalink
Fixed swiftLint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fabulouiOS-monk committed Jun 13, 2024
1 parent a7015dd commit 798c787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Scribe/AboutTab/AboutViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ extension AboutViewController {
guard let navigationView else { return }
navigationView.addSubview(hostingController.view)
navigationView.bringSubviewToFront(hostingController.view)

NSLayoutConstraint.activate([
hostingController.view.topAnchor.constraint(equalTo: navigationView.topAnchor, constant: 30),
hostingController.view.leadingAnchor.constraint(equalTo: navigationView.leadingAnchor),
Expand Down
2 changes: 1 addition & 1 deletion Scribe/SettingsTab/SettingsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ extension SettingsViewController {
guard let navigationView else { return }
navigationView.addSubview(hostingController.view)
navigationView.bringSubviewToFront(hostingController.view)

NSLayoutConstraint.activate([
hostingController.view.topAnchor.constraint(equalTo: navigationView.topAnchor, constant: 30),
hostingController.view.leadingAnchor.constraint(equalTo: navigationView.leadingAnchor),
Expand Down

0 comments on commit 798c787

Please sign in to comment.