From cc37d27ab8c6870dad06be8566cafae6aebc9148 Mon Sep 17 00:00:00 2001 From: Ionut-Cristian Florescu Date: Sun, 28 Jan 2024 20:45:16 +0200 Subject: [PATCH] Remove unused import in example code --- examples/bookstall/src/routes/authors/+page.svelte | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/bookstall/src/routes/authors/+page.svelte b/examples/bookstall/src/routes/authors/+page.svelte index 184f5ca..b931a09 100644 --- a/examples/bookstall/src/routes/authors/+page.svelte +++ b/examples/bookstall/src/routes/authors/+page.svelte @@ -2,10 +2,9 @@ import { invalidateAll } from '$app/navigation'; import AuthorizationAlert from '$lib/components/AuthorizationAlert.svelte'; import DataTable from '$lib/components/DataTable.svelte'; - import TextareaInput from '$lib/components/inputs/TextareaInput.svelte'; - import TextInput from '$lib/components/inputs/TextInput.svelte'; import ModalEditor from '$lib/components/ModalEditor.svelte'; - import { savable } from '$lib/savable'; + import TextInput from '$lib/components/inputs/TextInput.svelte'; + import TextareaInput from '$lib/components/inputs/TextareaInput.svelte'; import { trpc } from '$lib/trpc/client'; import type { RouterInputs } from '$lib/trpc/router'; import { TRPCClientError } from '@trpc/client';