mirror of https://github.com/VERT-sh/VERT.git
remove unused imports
This commit is contained in:
parent
510943b500
commit
75a943b3d5
|
@ -1,12 +1,7 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { browser } from "$app/environment";
|
|
||||||
import FancyTextInput from "$lib/components/functional/FancyInput.svelte";
|
import FancyTextInput from "$lib/components/functional/FancyInput.svelte";
|
||||||
import Panel from "$lib/components/visual/Panel.svelte";
|
import Panel from "$lib/components/visual/Panel.svelte";
|
||||||
import { GITHUB_URL_VERTD } from "$lib/consts";
|
import { RefreshCwIcon } from "lucide-svelte";
|
||||||
import { log } from "$lib/logger";
|
|
||||||
import { addToast } from "$lib/store/ToastProvider";
|
|
||||||
import { RefreshCwIcon, SaveAllIcon } from "lucide-svelte";
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
import type { Settings } from "./index.svelte";
|
import type { Settings } from "./index.svelte";
|
||||||
|
|
||||||
const { settings }: { settings: Settings } = $props();
|
const { settings }: { settings: Settings } = $props();
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
// ship fast n break things !!
|
// ship fast n break things !!
|
||||||
// -- nullptr
|
// -- nullptr
|
||||||
|
|
||||||
|
// that definitely happened
|
||||||
|
// -- JovannMC
|
||||||
|
|
||||||
import Uploader from "$lib/components/functional/Uploader.svelte";
|
import Uploader from "$lib/components/functional/Uploader.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,11 @@
|
||||||
import { GITHUB_API_URL } from "$lib/consts";
|
import { GITHUB_API_URL } from "$lib/consts";
|
||||||
import { addToast } from "$lib/store/ToastProvider";
|
import { addToast } from "$lib/store/ToastProvider";
|
||||||
|
|
||||||
interface Donator {
|
/* interface Donator {
|
||||||
name: string;
|
name: string;
|
||||||
amount?: string | number;
|
amount?: string | number;
|
||||||
avatar: string;
|
avatar: string;
|
||||||
}
|
} */
|
||||||
|
|
||||||
interface Contributor {
|
interface Contributor {
|
||||||
name: string;
|
name: string;
|
||||||
|
|
Loading…
Reference in New Issue