(input: { visible: boolean; opened: boolean })
| 21 | export const getSessionKey = (dir: string | undefined, id: string | undefined) => `${dir ?? ""}${id ? `/${id}` : ""}` |
| 22 | |
| 23 | export function shouldShowFileTree(input: { visible: boolean; opened: boolean }) { |
| 24 | return input.opened && input.visible |
| 25 | } |
| 26 | |
| 27 | export const createSessionTabs = (input: TabsInput) => { |
| 28 | const review = input.review ?? (() => false) |
no outgoing calls
no test coverage detected