Skip to content

Commit

Permalink
ABW-1950 Fix the copy (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciek-rdx committed Jul 25, 2023
1 parent 4166f7d commit bd78ed8
Showing 1 changed file with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ extension NameAccount {

AppTextField(
placeholder: viewStore.namePlaceholder,
text: nameBinding,
hint: .info(L10n.CreateEntity.NameNewEntity.explanation)
text: nameBinding
)
#if os(iOS)
.textFieldCharacterLimit(Profile.Network.Account.nameMaxLength, forText: nameBinding)
Expand Down Expand Up @@ -98,12 +97,18 @@ extension NameAccount.View {
}

private func subtitle(with viewState: NameAccount.ViewState) -> some View {
Text(viewState.subtitleText)
.fixedSize(horizontal: false, vertical: true)
.padding(.horizontal, .large1)
.multilineTextAlignment(.center)
.foregroundColor(.app.gray1)
.textStyle(.body1Regular)
VStack {
Text(viewState.subtitleText)
.fixedSize(horizontal: false, vertical: true)
.padding(.horizontal, .large1)
.multilineTextAlignment(.center)
.foregroundColor(.app.gray1)
.textStyle(.body1Regular)

Text(L10n.CreateAccount.NameNewAccount.explanation)
.foregroundColor(.app.gray2)
.textStyle(.body1Regular)
}
}

private func useLedgerAsFactorSource(
Expand Down

0 comments on commit bd78ed8

Please sign in to comment.