From d31ce5dbf3fbf47677dab37c487f6daaf728f864 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Fri, 25 Jul 2025 07:41:35 +0545 Subject: [PATCH] Use usable models instead of available models --- VoiceInk/PowerMode/PowerModeConfigView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VoiceInk/PowerMode/PowerModeConfigView.swift b/VoiceInk/PowerMode/PowerModeConfigView.swift index 36c90b2..bb65ee3 100644 --- a/VoiceInk/PowerMode/PowerModeConfigView.swift +++ b/VoiceInk/PowerMode/PowerModeConfigView.swift @@ -351,8 +351,8 @@ struct ConfigurationView: View { SectionHeader(title: "Transcription") // Whisper Model Selection Subsection - if whisperState.availableModels.isEmpty { - Text("No Whisper models available. Download models in the AI Models tab.") + if whisperState.usableModels.isEmpty { + Text("No transcription models available. Please connect to a cloud service or download a local model in the AI Models tab.") .font(.subheadline) .foregroundColor(.secondary) .padding()