Skip to content

Commit

Permalink
Fixed form bug
Browse files Browse the repository at this point in the history
  • Loading branch information
diogoviannaaraujo committed Apr 2, 2020
1 parent 842b060 commit 795e79d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vela/ui",
"version": "0.2.2",
"version": "0.2.3",
"description": "Vela React UI Toolkit",
"main": "src/index.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Form/Form.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Formik, Form} from 'formik'
import {Formik, Form as FormikForm} from 'formik'

const Form = ({children, ...props}) => <Formik {...props}><Form>{children}</Form></Formik>
const Form = ({children, ...props}) => <Formik {...props}><FormikForm>{children}</FormikForm></Formik>

export default Form

0 comments on commit 795e79d

Please sign in to comment.