Skip to content

Commit f6086a0

Browse files
committed
chore: fix linting
1 parent c1079a5 commit f6086a0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/svelte-form/src/createFormRune.svelte.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
import { getContext } from 'svelte'
12
import { createForm } from './createForm.svelte'
3+
import AppFormSvelte from './AppForm.svelte'
4+
import AppFieldSvelte from './AppField.svelte'
5+
import { fieldContextKey, formContextKey } from './context-keys.js'
26
import type {
37
AnyFieldApi,
48
AnyFormApi,
@@ -9,10 +13,7 @@ import type {
913
} from '@tanstack/form-core'
1014
import type { FieldComponent } from './types.js'
1115
import type { SvelteFormExtendedApi } from './createForm.svelte'
12-
import { Component, getContext, Snippet, SvelteComponent } from 'svelte'
13-
import AppFormSvelte from './AppForm.svelte'
14-
import AppFieldSvelte from './AppField.svelte'
15-
import { fieldContextKey, formContextKey } from './context-keys.js'
16+
import type { Component, Snippet, SvelteComponent } from 'svelte';
1617

1718
/**
1819
* TypeScript inferencing is weird.

0 commit comments

Comments
 (0)