Fix duplications of data, sort query list, visual improvements

This commit is contained in:
Guntis Smaukstelis
2023-05-21 13:26:17 +03:00
parent 040672d6e0
commit 8b3f97bb96
8 changed files with 15 additions and 21 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ console.log("api host:", import.meta.env.VITE_API_HOST);
type Section = "aggregator" | "fileManager";
const App: Component = () => {
const [getSection, setSection] = createSignal<Section>("aggregator");
const [getSection, setSection] = createSignal<Section>("fileManager");
const section = () => getSection() === "aggregator" ? <Aggregator /> : <FileManager />;