Polish chat input UX (#388)

This commit is contained in:
Will Chen
2025-06-11 14:39:55 -07:00
committed by GitHub
parent c1aa6803ce
commit b044acb61f
6 changed files with 110 additions and 66 deletions

View File

@@ -8,10 +8,17 @@ export function ChatInputControls({
showContextFilesPicker?: boolean;
}) {
return (
<div className="pb-2 flex gap-2">
<div className="flex">
<ModelPicker />
{showContextFilesPicker && <ContextFilesPicker />}
<div className="w-2"></div>
<ProModeSelector />
<div className="w-1"></div>
{showContextFilesPicker && (
<>
<ContextFilesPicker />
<div className="w-0.5"></div>
</>
)}
</div>
);
}