We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9669d8 commit 4dcf5e4Copy full SHA for 4dcf5e4
site/src/modules/resources/AgentRow.tsx
@@ -70,7 +70,7 @@ export const AgentRow: FC<AgentRowProps> = ({
70
const { browser_only } = useFeatureVisibility();
71
const appSections = organizeAgentApps(agent.apps);
72
const hasAppsToDisplay =
73
- !hideVSCodeDesktopButton || appSections.some((it) => it.apps.length > 0);
+ !browser_only || appSections.some((it) => it.apps.length > 0);
74
const shouldDisplayApps =
75
(agent.status === "connected" && hasAppsToDisplay) ||
76
agent.status === "connecting";
0 commit comments