From 62c421c0dffed52ac58eff5c6bfaa2813f46e299 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Fri, 11 Jul 2025 09:15:01 +0545 Subject: [PATCH] Fix: Restore transcription failed notification --- VoiceInk/Whisper/WhisperState.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/VoiceInk/Whisper/WhisperState.swift b/VoiceInk/Whisper/WhisperState.swift index df93871..47ba896 100644 --- a/VoiceInk/Whisper/WhisperState.swift +++ b/VoiceInk/Whisper/WhisperState.swift @@ -375,6 +375,13 @@ class WhisperState: NSObject, ObservableObject { logger.error("❌ Could not create a record for the failed transcription: \(error.localizedDescription)") } + await MainActor.run { + NotificationManager.shared.showNotification( + title: "Transcription Failed", + type: .error + ) + } + await self.dismissMiniRecorder() } }