Skip to content

Commit

Permalink
fix: App crashes in some commons when trying to load members
Browse files Browse the repository at this point in the history
  • Loading branch information
roienatan committed Oct 30, 2023
1 parent 5c3a84c commit 3001dc5
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 3001dc5

Please sign in to comment.