Skip to content

Commit

Permalink
validate peers
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Apr 8, 2023
1 parent bf269a0 commit 244ce1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modules/networkMembersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const NetworkMembersTable = ({ nwid }) => {
}

if (conStatus === 2) {
if (peers?.version === "-1.-1.-1") {
if (!peers || peers?.version === "-1.-1.-1") {
return (
<span
style={{ cursor: "pointer" }}
Expand Down

0 comments on commit 244ce1c

Please sign in to comment.