change globalApi path

This commit is contained in:
kwaroran
2024-10-26 20:40:40 +09:00
parent d575b0817c
commit ffa6308ca3
65 changed files with 87 additions and 87 deletions

View File

@@ -7,13 +7,13 @@
import { ChevronRightIcon, User } from 'lucide-svelte';
import { hubURL, isCharacterHasAssets } from 'src/ts/characterCards';
import TextInput from '../UI/GUI/TextInput.svelte';
import { openURL } from 'src/ts/storage/globalApi';
import { openURL } from 'src/ts/globalApi';
import Button from '../UI/GUI/Button.svelte';
import { XIcon } from "lucide-svelte";
import SelectInput from "../UI/GUI/SelectInput.svelte";
import OptionInput from "../UI/GUI/OptionInput.svelte";
import { language } from 'src/lang';
import { getFetchData } from 'src/ts/storage/globalApi';
import { getFetchData } from 'src/ts/globalApi';
import { alertStore, selectedCharID } from "src/ts/stores";
import { tokenize } from "src/ts/tokenizer";
import TextAreaInput from "../UI/GUI/TextAreaInput.svelte";

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import { HomeIcon, MailIcon, MaximizeIcon, WalletIcon } from "lucide-svelte";
import { isTauri, openURL, toggleFullscreen } from "src/ts/storage/globalApi";
import { isTauri, openURL, toggleFullscreen } from "src/ts/globalApi";
</script>
<svelte:head>

View File

@@ -8,7 +8,7 @@
import Button from "../UI/GUI/Button.svelte";
import { language } from "src/lang";
import { parseMultilangString } from "src/ts/util";
import { checkCharOrder } from "src/ts/storage/globalApi";
import { checkCharOrder } from "src/ts/globalApi";
interface Props {
endGrid?: any;
}