[eric] marketplace: its own dock app via a shell-global Directory host, dialogs grouped under Directory/dialogs

This commit is contained in:
ciregenz
2026-08-05 10:06:15 -07:00
parent 3e8aa56614
commit d81690efb5
5 changed files with 31 additions and 4 deletions
@@ -28,6 +28,7 @@ import { fetchOutputs } from '@/shared/state/outputsSlice';
import UpdateReadyPill from '@/app/components/Layout/UpdateReadyPill';
import ShareRequestHost from '@/app/components/share/ShareRequestHost';
import CardContextMenu from '@/app/pages/Dashboard/desktop/CardContextMenu';
import MarketplaceHost from '@/app/pages/Directory/MarketplaceHost';
import { findBrowserByWebContentsId } from '@/shared/browserRegistry';
import { byPreviewRecency } from '@/shared/previewOrder';
import { useClaudeTokens, useThemeAccent, useThemeWash } from '@/shared/styles/ThemeContext';
@@ -581,6 +582,8 @@ const AppShell: React.FC = () => {
{/* Shell-global right-click host (portals to body): chat surfaces render on non-dashboard routes too, so the menu can't live inside DashboardCanvas. */}
<CardContextMenu />
<MarketplaceHost />
</Box>
);
};