removed console.logs

This commit is contained in:
srgooglo 2020-10-29 14:57:17 +01:00
parent a9517b43b7
commit fe6dd9258b
2 changed files with 0 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import styles from './index.less'
export default class AppSplash extends React.Component {
render() {
console.log(this.props.fadeout)
return (
<div className={classnames(styles.wrapper, {[styles.fadeout]: this.props.fadeout})} style={this.props.fadeout? { animationDuration: `${this.props.fadeout}ms` } : null} >
<div className="bouncy-logo">

View File

@ -111,7 +111,6 @@ export default {
state.dispatcher({ type: "updateState", payload: { queryDone: true, splash: { render: true, fadeout: state.fadeclock } } })
setTimeout(() => {
console.log("closing splash")
state.dispatcher({ type: "updateState", payload: { splash: { render: false, fadeout: false } } })
}, state.fadeclock)
},