Skip to content

Commit

Permalink
Address code review feedback
Browse files Browse the repository at this point in the history
Add placeholder hints in text fields
  • Loading branch information
tillh-stripe committed Feb 3, 2025
1 parent 841b0fa commit 03ded89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ struct PlaygroundView: View {
}

Section(header: Text("Relink")) {
TextField("Customer", text: viewModel.customerId)
TextField("Customer ID (cus_)", text: viewModel.customerId)
.keyboardType(.default)
.autocapitalization(.none)
.accessibility(identifier: "playground-customer-id")

TextField("Relink authorization", text: viewModel.relinkAuthorization)
TextField("Relink authorization (fcauth_)", text: viewModel.relinkAuthorization)
.keyboardType(.default)
.accessibility(identifier: "playground-relink-authorization")
}
Expand Down

0 comments on commit 03ded89

Please sign in to comment.