Skip to content

Commit

Permalink
Merge pull request #2277 from daostack/cw-2276-fix-loading-common-mem…
Browse files Browse the repository at this point in the history
…bers-crash

App crashes in some commons when trying to load members #2276
  • Loading branch information
andreymikhadyuk authored Oct 31, 2023
2 parents 9560f66 + 3001dc5 commit 8001285
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const CommonMember: FC<CommonMemberProps> = ({
circlesWithHighestTier[circlesWithHighestTier.length - 1];

governanceCircles.forEach((circle) => {
if (!highestMemberCircle.hierarchy) {
if (!highestMemberCircle?.hierarchy) {
return;
}
if (!circle.hierarchy) {
Expand Down

0 comments on commit 8001285

Please sign in to comment.