system prompt client global and project

This commit is contained in:
Storme-bit
2026-04-19 02:57:11 -07:00
parent a0154e15e6
commit fa3b0859f0
4 changed files with 144 additions and 44 deletions

View File

@@ -104,7 +104,6 @@ export default function Sidebar({
}
const sessionRowProps = (session) => ({
key: session.external_id,
session,
isActive: activeSession?.external_id === session.external_id,
isHovered: hoveredId === session.external_id,
@@ -236,7 +235,7 @@ export default function Sidebar({
</span>
</div>
{projectSessions.map(session => (
<SessionRow {...sessionRowProps(session)} />
<SessionRow key={session.external_id} {...sessionRowProps(session)} />
))}
</div>
);
@@ -251,7 +250,7 @@ export default function Sidebar({
</div>
)}
{unassigned.map(session => (
<SessionRow {...sessionRowProps(session)} />
<SessionRow key={session.external_id} {...sessionRowProps(session)} />
))}
</>
)}