()
| 1873 | const color = createMemo(() => getQueryStatusColorByLabel(statusLabel())) |
| 1874 | |
| 1875 | const handleRefetch = () => { |
| 1876 | sendDevToolsEvent({ type: 'REFETCH', queryHash: activeQuery()?.queryHash }) |
| 1877 | const promise = activeQuery()?.fetch() |
| 1878 | promise?.catch(() => {}) |
| 1879 | } |
| 1880 | |
| 1881 | const triggerError = (errorType?: DevtoolsErrorType) => { |
| 1882 | const activeQueryVal = activeQuery() |
nothing calls this directly
no test coverage detected
searching dependent graphs…