()
| 93 | const themeState = useTheme() |
| 94 | const theme = () => props.api.theme.current |
| 95 | const params = () => |
| 96 | ("params" in props.api.route.current ? props.api.route.current.params : undefined) as |
| 97 | | { |
| 98 | mode?: DiffMode |
| 99 | sessionID?: string |
| 100 | messageID?: string |
| 101 | returnRoute?: TuiRouteCurrent |
| 102 | } |
| 103 | | undefined |
| 104 | const mode = () => params()?.mode ?? "git" |
| 105 | const diffInput = createMemo(() => { |
| 106 | const sessionID = params()?.sessionID |
no outgoing calls
no test coverage detected