()
| 134 | project: [], |
| 135 | provider_auth: {}, |
| 136 | get path() { |
| 137 | const EMPTY = { state: "", config: "", worktree: "", directory: "", home: "" } |
| 138 | if (pathQuery.isLoading) return EMPTY |
| 139 | return pathQuery.data ?? EMPTY |
| 140 | }, |
| 141 | get provider() { |
| 142 | const EMPTY = { all: new Map(), connected: [], default: {} } |
| 143 | if (providerQuery.isLoading) return EMPTY |
no outgoing calls
no test coverage detected