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