Update VoiceInk/Views/PredefinedPromptsView.swift

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
Prakash Joshi Pax 2025-10-31 16:41:33 +05:45 committed by GitHub
parent 6d3fac76ef
commit 648c36f12a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)
}