We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2fb6fd commit dcf5cdaCopy full SHA for dcf5cda
components/ChatInput.js
@@ -81,10 +81,7 @@ export class ChatInput extends Component {
81
82
const {setTypingState} = this.props;
83
84
- this.timeout = setTimeout(() => {
85
- debugger;
86
- setTypingState(false);
87
- }, 1500);
+ this.timeout = setTimeout(() => setTypingState(false), 1500);
88
89
setTypingState(true);
90
}
package.json
@@ -18,6 +18,7 @@
18
"react-native-vector-icons": "^2.1.0"
19
},
20
"devDependencies": {
21
+ "babel-cli": "^6.14.0",
22
"es5-shim": "^4.5.9",
23
"es6-promise": "^3.3.0",
24
"es6-shim": "^0.35.1",
0 commit comments