Skip to content

Commit 3b1d1a2

Browse files
committed
Update store name text field placeholder based on the latest design.
1 parent 622b078 commit 3b1d1a2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

WooCommerce/Classes/Authentication/Store Creation/Store name/StoreNameForm.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ struct StoreNameForm: View {
8787
.bodyStyle()
8888

8989
// Store name text field.
90-
TextField("", text: $name)
90+
TextField(Localization.textFieldPlaceholder, text: $name)
9191
.font(.body)
9292
.textFieldStyle(RoundedBorderTextFieldStyle(focused: false))
9393
.focused()
@@ -136,6 +136,10 @@ private extension StoreNameForm {
136136
"Store name",
137137
comment: "Text field prompt on the store name form in the store creation flow."
138138
)
139+
static let textFieldPlaceholder = NSLocalizedString(
140+
"Type a name for your store",
141+
comment: "Text field placeholder on the store name form in the store creation flow."
142+
)
139143
static let continueButtonTitle = NSLocalizedString(
140144
"Continue",
141145
comment: "Title of the button on the store creation store name form to continue."

0 commit comments

Comments
 (0)