diff --git a/web/src/routes/video/[id]/+page.svelte b/web/src/routes/video/[id]/+page.svelte index 34aa975..364b102 100644 --- a/web/src/routes/video/[id]/+page.svelte +++ b/web/src/routes/video/[id]/+page.svelte @@ -6,17 +6,11 @@ import api from '$lib/api'; import SquareArrowOutUpRightIcon from '@lucide/svelte/icons/square-arrow-out-up-right'; import type { ApiError, VideoResponse, UpdateVideoStatusRequest } from '$lib/types'; - import { - RotateCcwIcon, - SquarePenIcon, - BrushCleaningIcon, - RefreshCwIcon - } from '@lucide/svelte/icons'; + import { RotateCcwIcon, SquarePenIcon, BrushCleaningIcon } from '@lucide/svelte/icons'; import { setBreadcrumb } from '$lib/stores/breadcrumb'; import { appStateStore, ToQuery } from '$lib/stores/filter'; import VideoCard from '$lib/components/video-card.svelte'; import StatusEditor from '$lib/components/status-editor.svelte'; - import { Badge } from '$lib/components/ui/badge/index.js'; import { toast } from 'svelte-sonner'; let videoData: VideoResponse | null = null; @@ -247,23 +241,21 @@ style="grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));" > {#each videoData.pages as pageInfo (pageInfo.id)} -
- -
+ {/each}