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