From 6058bcb344167241f4c86179e815e03b1df9cd24 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Wed, 23 Oct 2024 20:25:24 -0700 Subject: [PATCH] Resolve warning Co-authored-by: brunnerh --- src/TextInput/TextInput.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/TextInput/TextInput.svelte b/src/TextInput/TextInput.svelte index bfa06745..46a88ef0 100644 --- a/src/TextInput/TextInput.svelte +++ b/src/TextInput/TextInput.svelte @@ -94,8 +94,7 @@ dispatch("change", parse(e.target.value)); }; - // svelte-ignore reactive_declaration_non_reactive_property - $: isFluid = !!ctx && ctx.isFluid; + const isFluid = !!ctx && ctx.isFluid; $: error = invalid && !readonly; $: helperId = `helper-${id}`; $: errorId = `error-${id}`;