remove unused imports

This commit is contained in:
JovannMC 2025-02-09 20:16:27 +03:00
parent 510943b500
commit 75a943b3d5
No known key found for this signature in database
3 changed files with 6 additions and 8 deletions

View File

@ -1,12 +1,7 @@
<script lang="ts">
import { browser } from "$app/environment";
import FancyTextInput from "$lib/components/functional/FancyInput.svelte";
import Panel from "$lib/components/visual/Panel.svelte";
import { GITHUB_URL_VERTD } from "$lib/consts";
import { log } from "$lib/logger";
import { addToast } from "$lib/store/ToastProvider";
import { RefreshCwIcon, SaveAllIcon } from "lucide-svelte";
import { onMount } from "svelte";
import { RefreshCwIcon } from "lucide-svelte";
import type { Settings } from "./index.svelte";
const { settings }: { settings: Settings } = $props();

View File

@ -6,6 +6,9 @@
// ship fast n break things !!
// -- nullptr
// that definitely happened
// -- JovannMC
import Uploader from "$lib/components/functional/Uploader.svelte";
</script>

View File

@ -9,11 +9,11 @@
import { GITHUB_API_URL } from "$lib/consts";
import { addToast } from "$lib/store/ToastProvider";
interface Donator {
/* interface Donator {
name: string;
amount?: string | number;
avatar: string;
}
} */
interface Contributor {
name: string;