Skip to content

Commit

Permalink
refactor: add help link to cli debug in desktop client
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolang124 committed Jun 19, 2024
1 parent 7df24cf commit e2a1aba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/cmds/preview/launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async function _openTeamsDesktopClient(

const desktopDebugHelpMessage = [
{
content: `Before proceeding, make sure your Teams desktop login matches your current Microsoft 365 account${username} used in Teams Toolkit.`,
content: `Before proceeding, make sure your Teams desktop login matches your current Microsoft 365 account${username} used in Teams Toolkit. Please visit https://aka.ms/teamsfx-debug-in-desktop-client to get more info.`,
color: Colors.WHITE,
},
];
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
"teamstoolkit.localDebug.useTestTool": "Alternatively, you can skip this step by choosing the %s option.",
"teamstoolkit.localDebug.launchTeamsDesktopClientError": "Unable to launch Teams desktop client.",
"teamstoolkit.localDebug.launchTeamsDesktopClientStoppedError": "Task to launch Teams desktop client stopped with exit code '%s'.",
"teamstoolkit.localDebug.launchTeamsDesktopClientMessage": "Before proceeding, make sure your Teams desktop login matches your current Microsoft 365 account %s used in Teams Toolkit.",
"teamstoolkit.localDebug.launchTeamsDesktopClientMessage": "Before proceeding, make sure your Teams desktop login matches your current Microsoft 365 account%s used in Teams Toolkit.",
"teamstoolkit.migrateTeamsManifest.progressTitle": "Upgrade Teams Manifest to extend in Outlook and the Microsoft 365 app",
"teamstoolkit.migrateTeamsManifest.selectFileConfig.name": "Select Teams Manifest to Upgrade",
"teamstoolkit.migrateTeamsManifest.selectFileConfig.title": "Select Teams Manifest to Upgrade",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class LaunchDesktopClientTerminal extends BaseTaskTerminal {
});
let username = "";
if (accountInfo.isOk() && accountInfo.value["unique_name"]) {
username = "(" + (accountInfo.value["unique_name"] as string) + ")";
username = " (" + (accountInfo.value["unique_name"] as string) + ")";
}
if (config.obj[showDebugDesktopClientWizard] === "false") {
void vscode.window
Expand Down

0 comments on commit e2a1aba

Please sign in to comment.