Skip to content

Commit

Permalink
Downgrade conflicting package react-select (#77)
Browse files Browse the repository at this point in the history
* Downgrade react-select due to issues

* 0.4.4
  • Loading branch information
easeq authored Mar 19, 2020
1 parent 05003d8 commit 07643c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flipbyte/formik-json",
"version": "0.4.3",
"version": "0.4.4",
"description": "formik-json is a wrapper for Formik to easily create forms using JSON / Javascript Object for defining the elements",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
"react-codemirror2": "^7.0.0",
"react-dropzone": "^10.2.1",
"react-quill": "^1.3.3",
"react-select": "^3.0.8",
"react-select": "^2.3.0",
"react-sortable-hoc": "^1.11.0",
"react-switch": "^5.0.1",
"shallowequal": "^1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Field/ReactSelect.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import _ from 'lodash';
import React from 'react';
import Select from 'react-select';
import CreatableSelect from 'react-select/creatable';
import CreatableSelect from 'react-select/lib/Creatable';
import { changeHandler, setFieldValueWrapper } from '../utils';

const prepareOptions = ( options ) => (
Expand Down

0 comments on commit 07643c7

Please sign in to comment.