Skip to content

Commit

Permalink
Updated peer dependencies to reflect upgrade to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgagneur committed Mar 14, 2019
1 parent f2ff588 commit 740ceec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/ChatBot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ class ChatBot extends Component {
this.content = null;
this.input = null;

this.setContentRef = element => {
this.setContentRef = (element) => {
this.content = element;
};

this.setInputRef = element => {
this.setInputRef = (element) => {
this.input = element;
};

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
"react-dom": "^16.4.1"
},
"peerDependencies": {
"styled-components": ">= 2.0.0 < 4",
"react": "^16.x",
"react-dom": "^16.x"
"styled-components": "^4.0.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}
}

0 comments on commit 740ceec

Please sign in to comment.