Quick chat FAB, active session indicators, memory tab counts, improved new session

This commit is contained in:
Hermes
2026-04-09 21:36:02 -05:00
parent 2550f4c4a7
commit d86cbea6a5
5 changed files with 51 additions and 25 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ export function SessionCard({ session }: { session: Session }) {
${cost.toFixed(2)}
</span>
)}
<span className="text-[11px] ml-auto" style={{ color: "var(--text-3)" }}>
{timeAgo(session.started_at)}
<span className="text-[11px] ml-auto" style={{ color: !session.ended_at ? "var(--accent)" : "var(--text-3)" }}>
{timeAgo(session.started_at, !session.ended_at)}
</span>
</div>
</div>