This commit is contained in:
Beingpax 2025-05-24 12:39:17 +05:45
parent 8dc622e077
commit 832a9f25d3

View File

@ -615,6 +615,11 @@ struct ConfigurationView: View {
selectedAIModel = aiService.currentModel
}
}
// Select first prompt if AI enhancement is enabled and no prompt is selected
if isAIEnhancementEnabled && selectedPromptId == nil {
selectedPromptId = enhancementService.allPrompts.first?.id
}
}
}