(path: string)
| 326 | }; |
| 327 | |
| 328 | const navigateToDirectory = (path: string) => { |
| 329 | setCurrentPath(path); |
| 330 | setPathHistory(prev => [...prev, path]); |
| 331 | }; |
| 332 | |
| 333 | const navigateBack = () => { |
| 334 | if (pathHistory.length > 1) { |
no outgoing calls
no test coverage detected