()
| 310 | }, [runs.length, dispatch]); |
| 311 | |
| 312 | const handlePrevRun = () => { |
| 313 | dispatch(setActiveRunIndex(activeRunIndex - 1)); |
| 314 | }; |
| 315 | |
| 316 | const handleNextRun = () => { |
| 317 | dispatch(setActiveRunIndex(activeRunIndex + 1)); |
nothing calls this directly
no test coverage detected