Skip to content

Commit 185aebe

Browse files
ci: apply automated fixes and generate docs
1 parent 4d3047c commit 185aebe

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

docs/framework/react/guides/validation.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -513,10 +513,7 @@ Here is the same example with Valibot:
513513
import * as v from 'valibot'
514514

515515
const userSchema = v.object({
516-
age: v.pipe(
517-
v.number(),
518-
v.minValue(13, 'You must be 13 to make an account'),
519-
),
516+
age: v.pipe(v.number(), v.minValue(13, 'You must be 13 to make an account')),
520517
})
521518

522519
function App() {

0 commit comments

Comments
 (0)