Skip to content

Commit

Permalink
fix: resolve logical issue and show modal for lib issue or for unspec…
Browse files Browse the repository at this point in the history
…ified issues from node
  • Loading branch information
maparr committed Sep 27, 2023
1 parent c9cf6e0 commit 6d6ddca
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/screens/network/Network.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -319,17 +319,17 @@ const Network = ({ history }) => {
text="REDIST INSTALLATION GUIDE."
/>
)}
{isShowMissingLibsMessage &&
nodeError?.type === NodeErrorType.NOT_SPECIFIED && (
<ErrorMessage compact>
WE HAVE A CHECKLIST THAT CAN HELP YOU DETECT THE ISSUE.{' '}
<Link
style={{ display: 'inline-block' }}
onClick={() => setOpenCheckListModal(true)}
text="OPEN CHECKLIST."
/>
</ErrorMessage>
)}
{(isShowMissingLibsMessage ||
nodeError?.type === NodeErrorType.NOT_SPECIFIED) && (
<ErrorMessage compact>
WE HAVE A CHECKLIST THAT CAN HELP YOU DETECT THE ISSUE.{' '}
<Link
style={{ display: 'inline-block' }}
onClick={() => setOpenCheckListModal(true)}
text="OPEN CHECKLIST."
/>
</ErrorMessage>
)}
</ErrorMessage>
</>
)}
Expand Down

0 comments on commit 6d6ddca

Please sign in to comment.