Skip to content

Commit 5661c09

Browse files
committed
fix: indentation
1 parent db86363 commit 5661c09

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

WooCommerce/Classes/Authentication/Jetpack Setup/Site Credential Login/SiteCredentialLoginView.swift

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -102,22 +102,23 @@ struct SiteCredentialLoginView: View {
102102
VStack(alignment: .leading, spacing: Constants.fieldVerticalSpacing) {
103103
// Username field.
104104
AuthenticationFormFieldView(viewModel: .init(header: Localization.usernameFieldTitle,
105-
placeholder: Localization.enterUsername,
106-
keyboardType: .default,
107-
text: $viewModel.username,
108-
isSecure: false,
109-
errorMessage: nil,
110-
isFocused: focusedField == .username, autocapitalization: .none))
105+
placeholder: Localization.enterUsername,
106+
keyboardType: .default,
107+
text: $viewModel.username,
108+
isSecure: false,
109+
errorMessage: nil,
110+
isFocused: focusedField == .username,
111+
autocapitalization: .none))
111112
.focused($focusedField, equals: .username)
112113
.disabled(viewModel.isLoggingIn)
113114

114115
// Password field.
115116
AuthenticationFormFieldView(viewModel: .init(header: Localization.passwordFieldTitle,
116-
placeholder: Localization.enterPassword,
117-
keyboardType: .default,
118-
text: $viewModel.password,
119-
isSecure: true,
120-
errorMessage: nil,
117+
placeholder: Localization.enterPassword,
118+
keyboardType: .default,
119+
text: $viewModel.password,
120+
isSecure: true,
121+
errorMessage: nil,
121122
isFocused: focusedField == .password,
122123
autocapitalization: .none))
123124
.focused($focusedField, equals: .password)

0 commit comments

Comments
 (0)