Formatted the timer text for the RecordingView view in the Recording package target.

This commit is contained in:
2026-07-03 19:21:37 +02:00
parent cad0a570ac
commit 946fa76c63
3 changed files with 13 additions and 5 deletions
@@ -63,7 +63,7 @@ extension RecordingView {
}
/// The elapsed recording time, formatted as `mm:ss` for the timer label.
var timerText: String {
var textTimer: String {
Duration
.seconds(secondsElapsed)
.formatted(.time(pattern: .minuteSecond(padMinuteToLength: 2)))