Skip to content

Commit

Permalink
Remove unknown props from <div> element
Browse files Browse the repository at this point in the history
Fix react15 warning concerning "Unknown props `forceWidth`, `forceSingleModeWidth`, `perfectFit`, `throttle`, `autoResize`, `onReady` on <div> tag. Remove these props from the element. For details, see https://fb.me/react-unknown-prop"
  • Loading branch information
NoMemoryError committed Feb 2, 2017
1 parent 7eb7ee2 commit 2bd2a0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Textfit.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default createClass({
},

render() {
const { children, text, style, min, max, mode, ...props } = this.props;
const { children, text, style, min, max, mode, forceWidth, forceSingleModeWidth, perfectFit, throttle, autoResize, onReady, ...props } = this.props;
const { fontSize, ready } = this.state;
const finalStyle = {
...style,
Expand Down

0 comments on commit 2bd2a0e

Please sign in to comment.