Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vinhnx committed Oct 29, 2023
1 parent d53364c commit 5a59706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Clendar/Modules/Settings/SettingsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ final class SettingsViewController: FormViewController {
super.viewDidLoad()

hidesBottomBarWhenPushed = true

navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("Done", comment: ""), style: .done, target: self, action: #selector(dimissModal))

checkUIMode()
Expand Down Expand Up @@ -459,7 +459,7 @@ extension SettingsViewController {
}

private func openWebViewController(_ url: String) {
guard let url = URL(string: "https://github.com/vinhnx/Clendar") else { return }
guard let url = URL(string: url) else { return }
let webViewController = SFSafariViewController(url: url)
navigationController?.present(webViewController, animated: true)
}
Expand Down

0 comments on commit 5a59706

Please sign in to comment.