(path: string, pathType: PathType)
| 109 | const [currentPathType, setCurrentPathType] = useState<PathType>("directory"); |
| 110 | |
| 111 | function updateCurrentPath(path: string, pathType: PathType) { |
| 112 | setCurrentPath(path); |
| 113 | setCurrentPathType(pathType); |
| 114 | } |
| 115 | |
| 116 | function changeRouteOnImport() { |
| 117 | navigate(DEFAULT_ROUTE_ON_IMPORT); |
no outgoing calls
no test coverage detected