From 72621c2e76c01a67b4d3c7ff03488790271ce5df Mon Sep 17 00:00:00 2001 From: marcosrdz Date: Fri, 8 Jan 2021 11:19:34 -0500 Subject: [PATCH] FIX: Wrong empty screen on LN #2456 --- screen/wallets/transactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen/wallets/transactions.js b/screen/wallets/transactions.js index 8296671f6..ac7b73c2b 100644 --- a/screen/wallets/transactions.js +++ b/screen/wallets/transactions.js @@ -162,7 +162,7 @@ const WalletTransactions = () => { ); const isLightning = () => { - const w = wallet; + const w = wallet.current; if (w && w.chain === Chain.OFFCHAIN) { return true; }