We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
prompt finished
1 parent 8d613c5 commit 5797a6dCopy full SHA for 5797a6d
src/extension/ui/src/App.tsx
@@ -205,9 +205,12 @@ export function App() {
205
runOutput.updateOutput({ method: 'message', params: { debug: err } });
206
client.desktopUI.toast.error(`Error running prompt: ${promptInput.includes('local') ? 'LOCAL' : promptInput}`)
207
},
208
+ onClose: () => {
209
+ client.desktopUI.toast.success(`Prompt finished ${promptInput.includes('local') ? 'LOCAL' : promptInput}`)
210
+ }
211
}
212
});
- client.desktopUI.toast.success(`Prompt finished ${promptInput.includes('local') ? 'LOCAL' : promptInput}`)
213
+
214
215
216
const renderPrompt = async () => {
0 commit comments