fix: Unused imports

This commit is contained in:
April Hall 2025-03-05 09:38:54 -05:00
parent 57c7f35c09
commit 655b3a9216
No known key found for this signature in database
GPG Key ID: A49AC35CB186266C

View File

@ -1,12 +1,10 @@
<script lang="ts"> <script lang="ts">
import { generateStream } from '$lib/functions/generateReadableStream';
import { Button } from '$lib/components/ui/button/index';
import { buttonVariants } from '$lib/components/ui/button/index'; import { buttonVariants } from '$lib/components/ui/button/index';
import * as ImageCropper from '$lib/components/ui/image-cropper'; import * as ImageCropper from '$lib/components/ui/image-cropper';
import { getFileFromUrl } from '$lib/components/ui/image-cropper'; import { getFileFromUrl } from '$lib/components/ui/image-cropper';
import type { PageData } from '../../../routes/(main)/account/$types'; import { generateStream } from '$lib/functions/generateReadableStream';
import * as DropdownMenu from '$lib/components/ui/dropdown-menu';
import { Edit } from 'lucide-svelte'; import { Edit } from 'lucide-svelte';
import type { PageData } from '../../../routes/(main)/account/$types';
const { data }: { data: PageData } = $props(); const { data }: { data: PageData } = $props();
let src = $state(data.user.image ?? `https://api.dicebear.com/9.x/identicon/svg?seed=${data.session?.user.id}`); let src = $state(data.user.image ?? `https://api.dicebear.com/9.x/identicon/svg?seed=${data.session?.user.id}`);