From 6d6ddcae716af8277baa1e226a913347a4b89001 Mon Sep 17 00:00:00 2001 From: maxym Date: Wed, 27 Sep 2023 16:40:16 +0200 Subject: [PATCH] fix: resolve logical issue and show modal for lib issue or for unspecified issues from node --- app/screens/network/Network.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app/screens/network/Network.tsx b/app/screens/network/Network.tsx index 90b308647..f6466b249 100644 --- a/app/screens/network/Network.tsx +++ b/app/screens/network/Network.tsx @@ -319,17 +319,17 @@ const Network = ({ history }) => { text="REDIST INSTALLATION GUIDE." /> )} - {isShowMissingLibsMessage && - nodeError?.type === NodeErrorType.NOT_SPECIFIED && ( - - WE HAVE A CHECKLIST THAT CAN HELP YOU DETECT THE ISSUE.{' '} - setOpenCheckListModal(true)} - text="OPEN CHECKLIST." - /> - - )} + {(isShowMissingLibsMessage || + nodeError?.type === NodeErrorType.NOT_SPECIFIED) && ( + + WE HAVE A CHECKLIST THAT CAN HELP YOU DETECT THE ISSUE.{' '} + setOpenCheckListModal(true)} + text="OPEN CHECKLIST." + /> + + )} )}