( sessionId: SessionId, )
| 2818 | } |
| 2819 | |
| 2820 | export function getCurrentSessionTitle( |
| 2821 | sessionId: SessionId, |
| 2822 | ): string | undefined { |
| 2823 | // Only returns title for current session (the only one we cache) |
| 2824 | if (sessionId === getSessionId()) { |
| 2825 | return getProject().currentSessionTitle |
| 2826 | } |
| 2827 | return undefined |
| 2828 | } |
| 2829 | |
| 2830 | export function getCurrentSessionAgentColor(): string | undefined { |
| 2831 | return getProject().currentSessionAgentColor |
no test coverage detected