Update error message for missing API key

This commit is contained in:
pliny
2026-03-20 18:28:39 -07:00
committed by GitHub
parent 4d2fef5556
commit 41bf8a9659
+1 -1
View File
@@ -118,7 +118,7 @@ class PromptCraftTool extends Tool {
pcRunMutation: async function() {
const apiKey = this.pcGetApiKey();
if (!apiKey) {
this.pcError = 'No API key found. Set your OpenRouter key in PlinyOS first.';
this.pcError = 'No API key found. Set your OpenRouter key in Advanced Settings first.';
return;
}
if (!this.pcInput.trim()) {