()
| 1916 | const color = createMemo(() => getQueryStatusColorByLabel(statusLabel())) |
| 1917 | |
| 1918 | const handleRefetch = () => { |
| 1919 | sendDevToolsEvent({ type: 'REFETCH', queryHash: activeQuery()?.queryHash }) |
| 1920 | const promise = activeQuery()?.fetch() |
| 1921 | promise?.catch(() => {}) |
| 1922 | } |
| 1923 | |
| 1924 | const triggerError = (errorType?: DevtoolsErrorType) => { |
| 1925 | const activeQueryVal = activeQuery() |
nothing calls this directly
no test coverage detected