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: {
Text("payment.confirm.button.title")
Text("payment.confirm.button.title".localized)
}
.buttonStyle(BorderedProminentButtonStyle())
.padding()

View File

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