Skip to content

Commit 23d643c

Browse files
committed
fix: also hide hidden apps
1 parent 643e184 commit 23d643c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ const WorkspaceApps: FC<WorkspaceAppsProps> = ({ workspace }) => {
627627

628628
const remainingSlots = WORKSPACE_APPS_SLOTS - builtinApps.size;
629629
const userApps = agent.apps
630-
.filter((app) => app.health === "healthy")
630+
.filter((app) => app.health === "healthy" && !app.hidden)
631631
.slice(0, remainingSlots);
632632

633633
const buttons: ReactNode[] = [];

0 commit comments

Comments
 (0)