From 633346d478191f7b28f4d6e2845bd381f179e823 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Tue, 20 Aug 2019 14:42:23 -0400 Subject: [PATCH] fix: remove unused state var --- test/embark-test/app/app.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 ; }