system prompt client global and project
This commit is contained in:
@@ -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)} />
|
||||
))}
|
||||
</>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user