Skip to content

Commit dcf5cda

Browse files
authored
Add babel-node to dependencies (#14)
1 parent c2fb6fd commit dcf5cda

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

components/ChatInput.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,7 @@ export class ChatInput extends Component {
8181

8282
const {setTypingState} = this.props;
8383

84-
this.timeout = setTimeout(() => {
85-
debugger;
86-
setTypingState(false);
87-
}, 1500);
84+
this.timeout = setTimeout(() => setTypingState(false), 1500);
8885

8986
setTypingState(true);
9087
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"react-native-vector-icons": "^2.1.0"
1919
},
2020
"devDependencies": {
21+
"babel-cli": "^6.14.0",
2122
"es5-shim": "^4.5.9",
2223
"es6-promise": "^3.3.0",
2324
"es6-shim": "^0.35.1",

0 commit comments

Comments
 (0)