diff --git a/src/routes/list/+page.svelte b/src/routes/list/+page.svelte index 540ce87..d09f5e2 100644 --- a/src/routes/list/+page.svelte +++ b/src/routes/list/+page.svelte @@ -4,32 +4,44 @@ import { SearchParamsSchema } from "./schema"; import { ChipGroup } from "$lib/components/ui/chip-group"; import { AnimeListWatchStatus } from "$lib/utils/list"; + import NativeSelect from "$lib/components/ui/native-select/native-select.svelte"; + import NativeSelectOption from "$lib/components/ui/native-select/native-select-option.svelte"; + import Input from "$lib/components/ui/input/input.svelte"; + import { Label } from "$lib/components/ui/label"; + import { Button } from "$lib/components/ui/button"; let { data }: { data: PageData } = $props(); const params = useSearchParams(SearchParamsSchema, { - pushHistory: false, + showDefaults: true, + updateURL: false, });