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 -1
View File
@@ -1,4 +1,5 @@
export function timeAgo(ts: number): string {
export function timeAgo(ts: number, active?: boolean): string {
if (active) return "now";
const now = Date.now() / 1000;
const diff = now - ts;
if (diff < 60) return "just now";