Rename Navigator to FSNAvigator to avoid conflicts

This commit is contained in:
2024-08-30 15:35:53 +02:00
parent 740dee033a
commit 2c0d7d81ac
4 changed files with 10 additions and 10 deletions

View File

@@ -1,9 +1,9 @@
<script>
import { onMount } from "svelte";
import { Navigator } from "../../filesystem/Navigator"
import { FSNavigator } from "../../filesystem/FSNavigator"
import { fs_encode_path, fs_node_icon } from "../../filesystem/FilesystemUtil";
const nav = new Navigator(false)
const nav = new FSNavigator(false)
onMount(() => {
nav.navigate("/me", false)
})