Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: tds crash because of identity absence
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-calavera committed Oct 30, 2019
1 parent f8efa61 commit 59db135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v2/components/ValidatorsMap/Marker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const Marker = ({scale, marker}: {scale: number, marker: any}) => {
<div className={classes.inner}>
<ValidatorName
pubkey={nodePubkey}
name={identity.name}
avatar={identity.avatarUrl}
name={identity ? identity.name : ""}
avatar={identity ? identity.avatarUrl : ""}
/>
<div className={classes.info}>
<div>
Expand Down

0 comments on commit 59db135

Please sign in to comment.