From e8118e00438bd459e7ef4a7afb9727256032c79d Mon Sep 17 00:00:00 2001 From: xu zhang Date: Tue, 9 Jan 2024 15:17:52 +0800 Subject: [PATCH] fix --- src/extensionCommands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extensionCommands.ts b/src/extensionCommands.ts index a5b120eb..8b136dc9 100644 --- a/src/extensionCommands.ts +++ b/src/extensionCommands.ts @@ -101,8 +101,8 @@ export namespace ExtCmds { const confirm = await window.showInputBox({ title: 'Are you absolutely sure?', - placeHolder: `Please type '${nd}' to confirm.`, - prompt: `Please type '${nd}' to confirm.` + placeHolder: `Please type '${domainName}' to confirm.`, + prompt: `Please type '${domainName}' to confirm.` }); if (confirm !== domainName) { window.showInformationMessage(`Input is not '${domainName}'.`);