Skip to content

Commit d45b473

Browse files
committed
fix: lint
1 parent 69eec15 commit d45b473

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Core/Core/Features/Login/LoginFindSchoolViewController.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ class LoginFindSchoolViewController: UIViewController {
161161

162162
func replaceRootDomain(urlString: String, newRootDomain: String) -> String? {
163163
let urlWithScheme = "https://\(urlString)"
164-
164+
165165
guard let url = URL(string: urlWithScheme) else {
166166
return nil
167167
}
168-
168+
169169
// Try to extract host, fallback to raw string if needed
170170
let host = url.host ?? urlString
171171
let parts = host.components(separatedBy: ".")
@@ -185,7 +185,6 @@ class LoginFindSchoolViewController: UIViewController {
185185
return newHost
186186
}
187187

188-
189188
private func toggleNextButtonVisibility() {
190189
if let host = searchField.text?.trimmingCharacters(in: .whitespacesAndNewlines), !host.isEmpty {
191190
nextButton.accessibilityIdentifier = "nextButton"

0 commit comments

Comments
 (0)