Skip to content

Commit aff13ab

Browse files
committed
chore: pr comments
1 parent 707b5ed commit aff13ab

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/framework/angular/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class AppComponent {
103103
}
104104
```
105105

106-
> In a situation where you want to be able to submit in a invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
106+
> In a situation where you want to be able to submit in an invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
107107
108108
```angular-ts
109109
import { injectForm } from '@tanstack/angular-form';

docs/framework/react/guides/nextjs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
id: ssr
2+
id: nextjs
33
title: TanStack Form - NextJs
44
---
55

docs/framework/react/guides/remix.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
id: ssr
2+
id: remix
33
title: TanStack Form - Remix
44
---
55

@@ -10,7 +10,7 @@ title: TanStack Form - Remix
1010
### Remix Prerequisites
1111

1212
- Start a new `Remix` project, following the steps in the [Remix Documentation](https://remix.run/docs/en/main/start/quickstart).
13-
- Install `@tanstack/react-form`
13+
- Install `@tanstack/react-form-start`
1414
- Install any [form validator](./validation#validation-through-schema-libraries) of your choice. [Optional]
1515

1616
## Remix integration
@@ -145,7 +145,7 @@ export default function Index() {
145145

146146
### useTransform
147147

148-
you may have noticed util function `useTransform` being used throughout these examples, it's primary responsibility is the merging of the server and client state. Under the hood it is a useCallback whose deps are that of the server state, when the server state changes it will automatically patch the client state.
148+
you may have noticed util function `useTransform` being used throughout these examples, its primary responsibility is the merging of the server and client state. Under the hood it is a useCallback whose deps are that of the server state, when the server state changes it will automatically patch the client state.
149149

150150
```tsx
151151
const form = useForm({

docs/framework/react/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const form = useForm({
9292
})
9393
```
9494

95-
> In a situation where you want to be able to submit in a invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
95+
> In a situation where you want to be able to submit in an invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
9696
9797
```tsx
9898
const form = useForm({

docs/framework/react/guides/tanstack-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
id: ssr
2+
id: tanstack-start
33
title: TanStack Form - TanStack Start
44
---
55

docs/framework/solid/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const form = createForm(() => ({
9797
}))
9898
```
9999

100-
> In a situation where you want to be able to submit in a invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
100+
> In a situation where you want to be able to submit in an invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
101101
102102
```tsx
103103
import { createForm } from '@tanstack/solid-form'

docs/framework/vue/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const form = useForm({
9898
</template>
9999
```
100100

101-
> In a situation where you want to be able to submit in a invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
101+
> In a situation where you want to be able to submit in an invalid state `canSubmitWhenInvalid` boolean flag can be provided to useForm.
102102
103103
```vue
104104
<script setup lang="ts">

0 commit comments

Comments
 (0)