get rid of Sessions heading

This commit is contained in:
AI Christianson 2025-03-14 17:29:32 -04:00
parent f7aaccec76
commit 7671312435
1 changed files with 1 additions and 4 deletions

View File

@ -149,14 +149,11 @@ export const DefaultAgentScreen: React.FC = () => {
// Sidebar content with sessions list
const sidebarContent = (
<div className="h-full flex flex-col px-4 py-3">
<div className="border-b border-border pb-3">
<h2 className="text-xl font-semibold">Sessions</h2>
</div>
<SessionList
sessions={sessions}
onSelectSession={handleSessionSelect}
currentSessionId={selectedSessionId || undefined}
className="flex-1 mt-3 pr-1 -mr-1"
className="flex-1 pr-1 -mr-1"
/>
</div>
);