лишние логи

This commit is contained in:
Alexey Kasyanchuk 2017-01-04 11:36:52 +03:00
parent 4ddf1910cc
commit 6ec4b359db
2 changed files with 0 additions and 2 deletions

View File

@ -31,7 +31,6 @@ return (
} }
leftIcon={ leftIcon={
(() => { (() => {
console.log(torrent.contentType)
switch(torrent.contentType) switch(torrent.contentType)
{ {
case 'video': case 'video':

View File

@ -138,7 +138,6 @@ export default class TorrentPage extends Component {
}; };
componentDidMount() { componentDidMount() {
window.torrentSocket.emit('torrent', this.props.hash, {files: true}, (data) => { window.torrentSocket.emit('torrent', this.props.hash, {files: true}, (data) => {
console.log(data);
this.torrent = data this.torrent = data
this.forceUpdate(); this.forceUpdate();
}); });