Skip to content

Commit

Permalink
fix: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushSehrawat committed Nov 1, 2024
1 parent fa71404 commit d7d4789
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/[type=mediaType]/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import clsx from 'clsx';
import Ytembed from '$lib/components/ytembed.svelte';
import { toast } from 'svelte-sonner';
import { goto, invalidateAll } from '$app/navigation';
import { invalidateAll } from '$app/navigation';
import ItemRequest from '$lib/components/item-request.svelte';
import * as Select from '$lib/components/ui/select';
import type { Selected } from 'bits-ui';
Expand Down Expand Up @@ -244,7 +244,9 @@
<Select.Group>
<Select.Label>All seasons</Select.Label>
<Select.Item value={data.riven}>
S{data.riven.seasons[0].number}-{data.riven.seasons[data.riven.seasons.length - 1].number}
S{data.riven.seasons[0].number}-{data.riven.seasons[
data.riven.seasons.length - 1
].number}
</Select.Item>
</Select.Group>
{#each data.riven.seasons as season}
Expand Down

0 comments on commit d7d4789

Please sign in to comment.