diff --git a/test/embark-test/app/app.js b/test/embark-test/app/app.js
index a79d7e5..9227695 100644
--- a/test/embark-test/app/app.js
+++ b/test/embark-test/app/app.js
@@ -29,8 +29,7 @@ const observables = {};
class App extends React.Component {
state = {
- ready: false,
- observable: null
+ ready: false
}
componentDidMount(){
@@ -66,7 +65,7 @@ class App extends React.Component {
}
render() {
- const {ready, observable} = this.state;
+ const {ready} = this.state;
if(!ready) return Loading...;
return ;
}