remove unused imports

This commit is contained in:
maxDorninger
2025-08-11 20:24:41 +02:00
parent 1a489dc71d
commit cd549cfc84
4 changed files with 0 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
<script lang="ts">
import LoginCard from '$lib/components/login-card.svelte';
import { page } from '$app/state';
import {getContext} from "svelte";
let oauthProvider: () => {oauth_name: string} = getContext("oauthProvider");

View File

@@ -1,6 +1,4 @@
<script lang="ts">
import logo from '$lib/images/logo.svg';
import background from '$lib/images/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpg?enhanced';
import { Button } from '$lib/components/ui/button';
import { Input } from '$lib/components/ui/input';
import { Label } from '$lib/components/ui/label';

View File

@@ -1,6 +1,4 @@
<script lang="ts">
import logo from '$lib/images/logo.svg';
import background from '$lib/images/pawel-czerwinski-NTYYL9Eb9y8-unsplash.jpg?enhanced';
import { page } from '$app/state';
import { Button } from '$lib/components/ui/button';
import { Input } from '$lib/components/ui/input';

View File

@@ -1,7 +1,6 @@
<script lang="ts">
import { UserCheck } from 'lucide-svelte';
import { Button } from '$lib/components/ui/button/index.js';
import Logo from '$lib/components/logo-side-by-side.svelte';
import { handleLogout } from '$lib/utils.ts';
import { base } from '$app/paths';
</script>