Skip to content

Commit ffa77a4

Browse files
committed
SwiftFormat 0.53 fixes
1 parent 2f70913 commit ffa77a4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

FirebaseAuth/Tests/SampleSwift/AuthenticationExample/ViewControllers/AccountLinkingViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ class AccountLinkingViewController: UIViewController, DataSourceProviderDelegate
386386
preferredStyle: .alert
387387
)
388388

389-
["Email", "Password"].forEach { placeholder in
389+
for placeholder in ["Email", "Password"] {
390390
loginAlertController.addTextField { textfield in
391391
textfield.placeholder = placeholder
392392
}

FirebaseAuth/Tests/SampleSwift/AuthenticationExample/ViewControllers/AuthViewController.swift

+2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
// For Sign in with Facebook
1616
import FBSDKLoginKit
1717
import FirebaseAuth
18+
1819
// [START auth_import]
1920
import FirebaseCore
21+
2022
// For Sign in with Google
2123
// [START google_import]
2224
import GoogleSignIn

0 commit comments

Comments
 (0)