From 648c36f12ac15d1311ee0f329b94714dc7768415 Mon Sep 17 00:00:00 2001 From: Prakash Joshi Pax <101010368+Beingpax@users.noreply.github.com> Date: Fri, 31 Oct 2025 16:41:33 +0545 Subject: [PATCH] Update VoiceInk/Views/PredefinedPromptsView.swift Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --- VoiceInk/Views/PredefinedPromptsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/Views/PredefinedPromptsView.swift b/VoiceInk/Views/PredefinedPromptsView.swift index bfe85fe..c243197 100644 --- a/VoiceInk/Views/PredefinedPromptsView.swift +++ b/VoiceInk/Views/PredefinedPromptsView.swift @@ -8,7 +8,7 @@ struct PredefinedPromptsView: View { var body: some View { ScrollView { LazyVGrid(columns: columns, spacing: 16) { - ForEach(PromptTemplates.all) { template in + ForEach(PromptTemplates.all, id: \.title) { template in PredefinedTemplateButton(prompt: template) { onSelect(template) }