From f9d84532a1c72ec77caf150be1418f96a2dc79a6 Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Sun, 3 Dec 2017 20:48:45 -0600 Subject: [PATCH] fix(syncing): onyl show % when over 0 --- app/components/LndSyncing/LndSyncing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/LndSyncing/LndSyncing.js b/app/components/LndSyncing/LndSyncing.js index 5bc7200f..176a9c27 100644 --- a/app/components/LndSyncing/LndSyncing.js +++ b/app/components/LndSyncing/LndSyncing.js @@ -41,7 +41,7 @@ class LndSyncing extends Component {

zap

- {!fetchingBlockHeight &&

{syncPercentage}%

} + {!fetchingBlockHeight &&

{syncPercentage > 0 && `${syncPercentage}%`}

}

syncing your lightning node to the blockchain