It's a todo list.
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove unused imports

+3 -4
+3 -4
src/routes/[id]/+page.svelte
··· 1 1 <script lang="ts"> 2 - import { onMount } from "svelte"; 3 2 import { page } from "$app/state"; 4 3 import { goto } from "$app/navigation"; 5 4 import toast from "svelte-french-toast"; 6 - import { formatSecondsToDuration, generateId } from "$lib/utils"; 7 - import { local_lists, pinned_list, type List, type Task } from "$lib/stores.svelte"; 8 - import TaskItem from "$lib/TaskItem.svelte"; 5 + import { generateId } from "$lib/utils"; 6 + import { local_lists, pinned_list, type List } from "$lib/stores.svelte"; 7 + import TaskItem from "$lib/TaskItem.svelte"; 9 8 10 9 let is_menu_open = $state(false); 11 10 let list : List | undefined = $derived(local_lists.current!.find((l) => l.id === page.params.id));