Fix display of call counter

This commit is contained in:
Benoit Martins 2025-01-29 16:59:41 +01:00
parent 7e1e3adf8d
commit 4d10b44da5

View file

@ -100,7 +100,7 @@ struct ContentView: View {
.padding(.leading, 10) .padding(.leading, 10)
if callViewModel.callsCounter > 1 { if callViewModel.callsCounter > 1 {
Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter)) Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter.description))
.default_text_style_white(styleSize: 16) .default_text_style_white(styleSize: 16)
} else { } else {
Text("\(callViewModel.displayName)") Text("\(callViewModel.displayName)")