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}`;