clearPromptAPI method prop names fixed

This commit is contained in:
Mic 2025-09-07 19:55:00 +02:00
parent d4f7cf5e65
commit b8501f5974

View file

@ -590,7 +590,7 @@ export async function savePrompt(prompt) {
export async function clearPromptAPI(id){
let _prompt = await loadPrompt(id);
_prompt.api_type = "";
_prompt.api_model = "";
_prompt.api = "";
_prompt.model = "";
await savePrompt(_prompt);
}