Skip to content

Commit 4dcf5e4

Browse files
committed
clean up merge
1 parent b9669d8 commit 4dcf5e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/modules/resources/AgentRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const AgentRow: FC<AgentRowProps> = ({
7070
const { browser_only } = useFeatureVisibility();
7171
const appSections = organizeAgentApps(agent.apps);
7272
const hasAppsToDisplay =
73-
!hideVSCodeDesktopButton || appSections.some((it) => it.apps.length > 0);
73+
!browser_only || appSections.some((it) => it.apps.length > 0);
7474
const shouldDisplayApps =
7575
(agent.status === "connected" && hasAppsToDisplay) ||
7676
agent.status === "connecting";

0 commit comments

Comments
 (0)