Skip to content

Commit ccea212

Browse files
committed
Updates
1 parent 3a9cbfb commit ccea212

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ This library is used by all forms on [Programmer Network](https://programmer.net
1616

1717
## Features
1818

19-
- Form JSON Schema Validation
20-
- Dirty state checking
21-
- Consume remote errors as part of the schema, e.g. `username already taken`. In simple words, errors coming from your API
22-
- Maps 1:1 with nested objects. In simple words, a form can generate the exact object shape that you want, no need for manual mapping before e.g. API submission
19+
- Form JSON Schema Validation ✔️
20+
- Dirty state checking ✔️
21+
- Consume remote errors as part of the schema, e.g. `username already taken`. In simple words, errors coming from your API ✔️
22+
- Maps 1:1 with nested objects. In simple words, a form can generate the exact object shape that you want, no need for manual mapping before e.g. API submission ✔️
2323

2424
---
2525

@@ -117,7 +117,7 @@ const object = { foo: { bar: { baz: 'hi' } } };
117117
```
118118

119119
```js
120-
const form: any = useForm(
120+
const form: any = useAjvForm(
121121
{
122122
foo: { bar: { baz: '' } },
123123
},

0 commit comments

Comments
 (0)