From 7a4a19e41207f5f8ca388f0f64f1a806d70d2616 Mon Sep 17 00:00:00 2001 From: Vasek Mlejnsky Date: Fri, 21 Sep 2018 08:39:31 +0200 Subject: [PATCH] Fix issue when "DeviceMenu" couldn't be closed when device was in a bootloader mode --- src/views/Wallet/components/LeftNavigation/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/Wallet/components/LeftNavigation/index.js b/src/views/Wallet/components/LeftNavigation/index.js index 15d2821f..34c123ba 100644 --- a/src/views/Wallet/components/LeftNavigation/index.js +++ b/src/views/Wallet/components/LeftNavigation/index.js @@ -93,6 +93,10 @@ class LeftNavigation extends Component { shouldRenderDeviceSelection: false, animationType: 'slide-right', }); + } else if (selectedDevice.features.bootloader_mode) { + this.setState({ + shouldRenderDeviceSelection: false, + }); } }