diff options
author | elijah <elijah@riseup.net> | 2017-04-25 23:42:21 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2017-04-25 23:42:21 -0700 |
commit | f0392a4937bb4c558f413d743daa4d71d0523478 (patch) | |
tree | f91f3771c526f8972b160fc448068a7eda5ce900 /ui/app/components | |
parent | cb3d4ff21e61ba76e386ae4179d2585899143a50 (diff) |
minor: fix indentation
Diffstat (limited to 'ui/app/components')
-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() { |