Skip to content

Commit 868ee98

Browse files
committed
Fix typo in field provider
1 parent 6c4aacd commit 868ee98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-renderer-demo/src/app/pages/renderer/field-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Next example shows simple input field with label and error message.
4848
```jsx
4949
import React from 'react';
5050

51-
const NewComponent = ({ FieldProvider, formOptions, name ...rest }) => (
51+
const NewComponent = ({ FieldProvider, formOptions, name, ...rest }) => (
5252
<div>
5353
<FieldProvider {...rest} name={name}>
5454
{({ input, meta, ...props }) => {

0 commit comments

Comments
 (0)