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.
1 parent d54fc5a commit 43872fbCopy full SHA for 43872fb
packages/backend/src/studio-api-impl.ts
@@ -87,9 +87,9 @@ export class StudioApiImpl implements StudioAPI {
87
// Do not wait on the promise as the api would probably timeout before the user answer.
88
podmanDesktopApi.window
89
.showWarningMessage(`Are you sure you want to delete this playground ?`, 'Confirm', 'Cancel')
90
- .then((result: string | undefined) => {
+ .then(async (result: string | undefined) => {
91
if (result === 'Confirm') {
92
- this.playgroundV2.deleteConversation(conversationId);
+ await this.playgroundV2.deleteConversation(conversationId);
93
}
94
})
95
.catch((err: unknown) => {
0 commit comments