Skip to content

Commit d5e06c7

Browse files
docs: fix tanstack start demo (#1196)
* docs: fix tanstack start demo * ci: apply automated fixes and generate docs --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 0e7b1e7 commit d5e06c7

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

examples/react/tanstack-start/app/routes/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { createFileRoute } from '@tanstack/react-router'
22
import { mergeForm, useForm, useTransform } from '@tanstack/react-form'
33
import { useStore } from '@tanstack/react-store'
4-
import { formOpts, getFormDataFromServer, handleForm } from '~/utils/form'
4+
import { getFormDataFromServer, handleForm } from '~/utils/form'
5+
import { formOpts } from '~/utils/form-isomorphic'
56

67
export const Route = createFileRoute('/')({
78
component: Home,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { formOptions } from '@tanstack/react-form'
2+
3+
export const formOpts = formOptions({
4+
defaultValues: {
5+
firstName: '',
6+
age: 0,
7+
},
8+
})

examples/react/tanstack-start/app/utils/form.tsx

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
11
import { createServerFn } from '@tanstack/react-start'
2-
import { formOptions } from '@tanstack/react-form'
32
import {
43
ServerValidateError,
54
createServerValidate,
65
getFormData,
76
} from '@tanstack/react-form/start'
87
import { setResponseStatus } from '@tanstack/react-start/server'
9-
10-
export const formOpts = formOptions({
11-
defaultValues: {
12-
firstName: '',
13-
age: 0,
14-
},
15-
})
8+
import { formOpts } from './form-isomorphic'
169

1710
const serverValidate = createServerValidate({
1811
...formOpts,

0 commit comments

Comments
 (0)