diff --git a/studio/frontend/src/components/assistant-ui/model-selector.tsx b/studio/frontend/src/components/assistant-ui/model-selector.tsx index 77a4d3262c..71d75b68f5 100644 --- a/studio/frontend/src/components/assistant-ui/model-selector.tsx +++ b/studio/frontend/src/components/assistant-ui/model-selector.tsx @@ -662,7 +662,10 @@ export function ModelSelector({ onEject={onEject ? handleEject : undefined} onFoldersChange={onFoldersChange} onPickLocalModel={onPickLocalModel ? handlePickLocalModel : undefined} - onBrowseHub={handleBrowseHub} + // The image tab (the only caller passing `task`) is a self-contained + // curated + on-device picker, so it omits the "Search Hub" button that + // navigates to the general Hub page. + onBrowseHub={task ? undefined : handleBrowseHub} onModelsChange={onModelsChange} deleteDisabled={deleteDisabled} className={contentClassName}