Skip to content

Commit 26f740d

Browse files
committed
remove hand raise emojis
1 parent cd7c68c commit 26f740d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/workspacesProvider.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ export class WorkspaceProvider implements vscode.TreeDataProvider<vscode.TreeIte
259259
for (const app of element.agent.apps) {
260260
if (app.statuses && app.statuses.length > 0) {
261261
for (const status of app.statuses) {
262-
// Show all statuses, not just ones needing attention
262+
// Show all statuses, not just ones needing attention.
263+
// We need to do this for now because the reporting isn't super accurate
264+
// yet.
263265
appStatuses.push(
264266
new AppStatusTreeItem({
265267
name: status.icon,
@@ -449,7 +451,7 @@ class AgentTreeItem extends OpenableTreeItem {
449451

450452
if (agent.apps && agent.apps.length > 0) {
451453
// Add an icon to indicate this agent has running apps
452-
this.label = "🖐️ " + this.label
454+
this.label = this.label
453455
}
454456
}
455457
}

0 commit comments

Comments
 (0)