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