Skip to content

Commit d7114a2

Browse files
committed
wip
1 parent 59b2231 commit d7114a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/react-inertia/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export const useForm = <Data extends Record<string, unknown>>(method: RequestMet
8989
...inertiaForm.errors,
9090
...typeof value === 'undefined'
9191
? key
92-
: { [key]: value }
92+
: { [key]: value },
9393
})
9494

9595
return this

packages/react/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,6 @@ export const useForm = <Data extends Record<string, unknown>>(method: RequestMet
192192
},
193193
validator() {
194194
return validator.current!
195-
}
195+
},
196196
}
197197
}

packages/vue-inertia/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const useForm = <Data extends Record<string, unknown>>(method: RequestMet
7777
...inertiaForm.errors,
7878
...typeof value === 'undefined'
7979
? key
80-
: { [key]: value }
80+
: { [key]: value },
8181
})
8282

8383
return this

0 commit comments

Comments
 (0)