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 0b1eae2 commit 15a557eCopy full SHA for 15a557e
packages/backend/src/studio-api-impl.ts
@@ -81,9 +81,9 @@ export class StudioApiImpl implements StudioAPI {
81
// Do not wait on the promise as the api would probably timeout before the user answer.
82
podmanDesktopApi.window
83
.showWarningMessage(`Are you sure you want to delete this playground ?`, 'Confirm', 'Cancel')
84
- .then((result: string | undefined) => {
+ .then(async (result: string | undefined) => {
85
if (result === 'Confirm') {
86
- this.playgroundV2.deleteConversation(conversationId);
+ await this.playgroundV2.deleteConversation(conversationId);
87
}
88
})
89
.catch((err: unknown) => {
0 commit comments