From f25a7cb9d3e59a5e804f4e89d00d56c3bb3977af Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 9 Feb 2023 21:33:56 -0500 Subject: [PATCH] [-] Remove unused function --- src/App.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 365510c..562f588 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -41,11 +41,6 @@ function getHref(f: File) return f.type == "directory" ? urlJoin(path, f.name) : urlJoin(host, path, f.name) } -function getParent(level: number) -{ - return urlJoin(path, "../") -} - export default function App() { let bcMax: number const [api] = createResource(fetchApi)