From 6b58243c91be3552c3fe1571382465ed7200de9e Mon Sep 17 00:00:00 2001 From: frelodev Date: Sat, 28 Sep 2024 12:32:28 +0200 Subject: [PATCH] chore: show invite information message when inviting user to workspace --- src/commands/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/client.ts b/src/commands/client.ts index d7709aa..aa80076 100644 --- a/src/commands/client.ts +++ b/src/commands/client.ts @@ -153,7 +153,7 @@ export async function inviteToWorkspace() { let user_id = await vscode.window.showInputBox({ prompt: "Enter name of the user you want to invite" }); if (user_id === undefined) return; await client.invite_to_workspace(workspace_id,user_id); - vscode.window.showInformationMessage("Invited " + user_id + "into workspace " + workspace_id); + vscode.window.showInformationMessage("Invited " + user_id + " into workspace " + workspace_id); } export async function leaveWorkspace() {