diff options
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/bye_splash.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ui/app/components/bye_splash.js b/ui/app/components/bye_splash.js index 633aa3d..0442c41 100644 --- a/ui/app/components/bye_splash.js +++ b/ui/app/components/bye_splash.js @@ -23,13 +23,13 @@ export default class ByeSplash extends React.Component { componentDidMount() { this.interval = setInterval(this.tick, this.props.delay) - bitmask.core.stop().then(msg => { - console.log(msg) - this.setState({readyToQuit: true}) - }, error => { - console.log(error) - this.setState({errorMessage: error}) - }) + bitmask.core.stop().then(msg => { + console.log(msg) + this.setState({readyToQuit: true}) + }, error => { + console.log(error) + this.setState({errorMessage: error}) + }) } componentWillUnmount() { |