( sessionId: SessionId, )
| 2738 | } |
| 2739 | |
| 2740 | export function getCurrentSessionTitle( |
| 2741 | sessionId: SessionId, |
| 2742 | ): string | undefined { |
| 2743 | // Only returns title for current session (the only one we cache) |
| 2744 | if (sessionId === getSessionId()) { |
| 2745 | return getProject().currentSessionTitle |
| 2746 | } |
| 2747 | return undefined |
| 2748 | } |
| 2749 | |
| 2750 | export function getCurrentSessionAgentColor(): string | undefined { |
| 2751 | return getProject().currentSessionAgentColor |
no test coverage detected