From 7c833b7be9bd05a4dc5412a50b099f288eaee401 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Sun, 15 Jun 2025 23:49:41 +0545 Subject: [PATCH] Replace cloud model speed with label --- VoiceInk/Views/ModelCardRowView.swift | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/VoiceInk/Views/ModelCardRowView.swift b/VoiceInk/Views/ModelCardRowView.swift index 7c122f3..eb805e5 100644 --- a/VoiceInk/Views/ModelCardRowView.swift +++ b/VoiceInk/Views/ModelCardRowView.swift @@ -348,15 +348,10 @@ struct CloudModelCardView: View { .foregroundColor(Color(.secondaryLabelColor)) .lineLimit(1) - // Speed - HStack(spacing: 3) { - Text("Speed") - .font(.system(size: 11, weight: .medium)) - .foregroundColor(Color(.secondaryLabelColor)) - progressDotsWithNumber(value: model.speed * 10) - } - .lineLimit(1) - .fixedSize(horizontal: true, vertical: false) + Label("Cloud Model", systemImage: "icloud") + .font(.system(size: 11)) + .foregroundColor(Color(.secondaryLabelColor)) + .lineLimit(1) // Accuracy HStack(spacing: 3) {