From cd3da5e07b9621c17bd359d9975f90be1fca2277 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Wed, 23 Oct 2024 20:25:14 -0700 Subject: [PATCH] Resolve warning Co-authored-by: brunnerh --- src/TextInput/PasswordInput.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/TextInput/PasswordInput.svelte b/src/TextInput/PasswordInput.svelte index 39f5eddc..17574410 100644 --- a/src/TextInput/PasswordInput.svelte +++ b/src/TextInput/PasswordInput.svelte @@ -88,8 +88,7 @@ const ctx = getContext("Form"); - // svelte-ignore reactive_declaration_non_reactive_property - $: isFluid = !!ctx && ctx.isFluid; + const isFluid = !!ctx && ctx.isFluid; $: helperId = `helper-${id}`; $: errorId = `error-${id}`; $: warnId = `warn-${id}`;