Fix localization, remove debugPrint statement

This commit is contained in:
Balazs Perlaki-Horvath 2025-01-21 21:21:44 +01:00
parent d2c9f14e2f
commit 37100cd96a
2 changed files with 1 additions and 2 deletions

View File

@ -69,7 +69,7 @@ struct CustomAmount: View {
) )
} }
} label: { } label: {
Text("payment.confirm.button.title") Text("payment.confirm.button.title".localized)
} }
.buttonStyle(BorderedProminentButtonStyle()) .buttonStyle(BorderedProminentButtonStyle())
.padding() .padding()

View File

@ -63,7 +63,6 @@ struct PaymentSummary: View {
.font(.callout) .font(.callout)
} }
}.onReceive(payment.completeSubject) { }.onReceive(payment.completeSubject) {
debugPrint("PaymentSummary::payment.completeSubject")
onComplete() onComplete()
} }
} }