()
| 187 | }, [MAX_RETRY_ATTEMPTS, RETRY_INTERVAL_MS]); |
| 188 | |
| 189 | const handleTryAgain = () => { |
| 190 | setRetryCount(0); |
| 191 | retryCountRef.current = 0; |
| 192 | loadWorkflows(); |
| 193 | }; |
| 194 | |
| 195 | const handleDeleteClick = (event: MouseEvent, workflow: WorkflowMetadataNormalized) => { |
| 196 | event.stopPropagation(); |
nothing calls this directly
no test coverage detected