Fix a couple things

This commit is contained in:
Nathan Bierema 2020-05-05 00:13:18 -04:00
parent 752fdd5be8
commit 754933e98b
2 changed files with 1 additions and 3 deletions

View File

@ -3,7 +3,7 @@
"version": "0.11.2", "version": "0.11.2",
"description": "React JSON Viewer Component, Extracted from redux-devtools", "description": "React JSON Viewer Component, Extracted from redux-devtools",
"main": "lib/index.js", "main": "lib/index.js",
"types": "dist/index.d.ts", "types": "lib/index.d.ts",
"scripts": { "scripts": {
"type-check": "tsc --noEmit", "type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch", "type-check:watch": "npm run type-check -- --watch",

View File

@ -27,8 +27,6 @@ export default class ItemRange extends React.Component<Props, State> {
constructor(props: Props) { constructor(props: Props) {
super(props); super(props);
this.state = { expanded: false }; this.state = { expanded: false };
this.handleClick = this.handleClick.bind(this);
} }
render() { render() {