We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caccc05 commit 619ab03Copy full SHA for 619ab03
src/image-handler.ts
@@ -68,9 +68,7 @@ export async function pushImageToCrcCluster(image: ImageInfo): Promise<void> {
68
if (result.exitCode !== 0) {
69
throw new Error(result.stdErr);
70
}
71
- extensionApi.window.showNotification({
72
- body: `Image ${image.name} pushed to ${productName} cluster`,
73
- });
+ extensionApi.window.showInformationMessage(`Image ${image.name} pushed to ${productName} cluster`, 'OK');
74
} catch (error) {
75
const errorMessage = error instanceof Error ? error.message : '' + error;
76
progress.report({
0 commit comments