diff --git a/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts b/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts
index e172e4220e17042ad9e34d6bfbdb467215462074..8fdfd7b7e4ccc096b1df28430c1d2e452c5b4c44 100644
--- a/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts
+++ b/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts
@@ -67,7 +67,7 @@ class CommandItem extends TreeItem {
     super(missionCommand.name);
     missionCommand.type = missionCommand.type ?? 'run';
     this.tooltip = missionCommand.description ?? missionCommand.name;
-    this.description = missionCommand.description ?? missionCommand.name;
+    this.description = missionCommand.description;
     this._isRunning = false;
     this.iconPath = new ThemeIcon(
       'notebook-execute',