summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2017-04-25 23:42:21 -0700
committerelijah <elijah@riseup.net>2017-04-25 23:42:21 -0700
commitf0392a4937bb4c558f413d743daa4d71d0523478 (patch)
treef91f3771c526f8972b160fc448068a7eda5ce900 /ui
parentcb3d4ff21e61ba76e386ae4179d2585899143a50 (diff)
minor: fix indentation
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/bye_splash.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/ui/app/components/bye_splash.js b/ui/app/components/bye_splash.js
index 633aa3d3..0442c41e 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() {