()
| 262 | |
| 263 | // Function to navigate to the next research stage |
| 264 | const navigateToNextStage = () => { |
| 265 | if (currentStageIndex < researchStages.length - 1) { |
| 266 | navigateToStage(currentStageIndex + 1); |
| 267 | } |
| 268 | }; |
| 269 | |
| 270 | // Function to navigate to the previous research stage |
| 271 | const navigateToPreviousStage = () => { |
no test coverage detected