Skip to content

Commit 25783fa

Browse files
committed
refactor: window.showMessage -> window.showInformationMessage
1 parent cb23975 commit 25783fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function customDataSetupCommand(context: ExtensionContext) {
1414
switch (picked) {
1515
case -1:
1616
// Cancel!
17-
window.showMessage(`It's been cancelled`);
17+
window.showInformationMessage(`It's been cancelled`);
1818
break;
1919
case 0:
2020
// Alpine.js
@@ -26,7 +26,7 @@ export function customDataSetupCommand(context: ExtensionContext) {
2626
break;
2727
default:
2828
// Cancel!
29-
window.showMessage(`It's been cancelled`);
29+
window.showInformationMessage(`It's been cancelled`);
3030
break;
3131
}
3232

0 commit comments

Comments
 (0)