( sessionId: SessionId, )
| 2917 | } |
| 2918 | |
| 2919 | export function getCurrentSessionTitle( |
| 2920 | sessionId: SessionId, |
| 2921 | ): string | undefined { |
| 2922 | // Only returns title for current session (the only one we cache) |
| 2923 | if (sessionId === getSessionId()) { |
| 2924 | return getProject().currentSessionTitle |
| 2925 | } |
| 2926 | return undefined |
| 2927 | } |
| 2928 | |
| 2929 | export function getCurrentSessionAgentColor(): string | undefined { |
| 2930 | return getProject().currentSessionAgentColor |
no test coverage detected