Skip to content

Commit 619ab03

Browse files
dgolovingbraad
authored andcommitted
fix: show information message after image pushed to the cluster
Signed-off-by: Denis Golovin <[email protected]>
1 parent caccc05 commit 619ab03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/image-handler.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ export async function pushImageToCrcCluster(image: ImageInfo): Promise<void> {
6868
if (result.exitCode !== 0) {
6969
throw new Error(result.stdErr);
7070
}
71-
extensionApi.window.showNotification({
72-
body: `Image ${image.name} pushed to ${productName} cluster`,
73-
});
71+
extensionApi.window.showInformationMessage(`Image ${image.name} pushed to ${productName} cluster`, 'OK');
7472
} catch (error) {
7573
const errorMessage = error instanceof Error ? error.message : '' + error;
7674
progress.report({

0 commit comments

Comments
 (0)