This commit is contained in:
marko-kraemer 2025-08-09 17:00:16 -07:00
parent ffd158760f
commit 4351a3688f
2 changed files with 4 additions and 2 deletions

View File

@ -265,7 +265,9 @@ export function DashboardContent() {
onConfigureAgent={(agentId) => router.push(`/agents/config/${agentId}`)}
/>
</div>
<Examples onSelectPrompt={setInputValue} />
<div className="w-full pt-4">
<Examples onSelectPrompt={setInputValue} count={5} />
</div>
</div>
{/* {customAgentsEnabled && (

View File

@ -350,7 +350,7 @@ export function HeroSection() {
{/* Examples section - right after chat input */}
<div className="w-full pt-2">
<Examples onSelectPrompt={setInputValue} count={6} />
<Examples onSelectPrompt={setInputValue} count={5} />
</div>
</div>