Fix phone number in registration popup

This commit is contained in:
Benoit Martins 2025-08-26 11:19:58 +02:00
parent 9325485da3
commit 3b2f97db6c

View file

@ -53,7 +53,8 @@ struct RegisterFragment: View {
if self.isShowPopup {
let titlePopup = Text("assistant_dialog_confirm_phone_number_title")
let contentPopup = Text("assistant_dialog_confirm_phone_number_message")
let contentPopup = Text(String(format: String(localized: "assistant_dialog_confirm_phone_number_message"), registerViewModel.phoneNumber))
PopupView(
isShowPopup: $isShowPopup,