From fdd1f7cf50c0dc4e804c5c121cf03439f598b234 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 1 Oct 2022 14:32:34 +0200 Subject: [PATCH] fix: imported as type only --- packages/astro-reactive-form/components/FieldSet.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro-reactive-form/components/FieldSet.astro b/packages/astro-reactive-form/components/FieldSet.astro index dd13d45..0f67f80 100644 --- a/packages/astro-reactive-form/components/FieldSet.astro +++ b/packages/astro-reactive-form/components/FieldSet.astro @@ -1,6 +1,6 @@ --- +import type { FormGroup } from '../core/form-group'; import Field from './Field.astro'; -import { FormGroup } from '../core/form-group'; export interface Props { group: FormGroup;