| 20 | } |
| 21 | |
| 22 | interface SessionPanelProps { |
| 23 | sessions: SessionMeta[]; |
| 24 | activeSessionId?: string; |
| 25 | loading?: boolean; |
| 26 | onSelectSession: (sessionId: string) => void; |
| 27 | onDeleteSession: (sessionId: string) => void; |
| 28 | onNewSession: () => void; |
| 29 | onRefresh: () => void; |
| 30 | } |
| 31 | |
| 32 | function formatTime(isoString: string): string { |
| 33 | const date = new Date(isoString); |
nothing calls this directly
no outgoing calls
no test coverage detected