Skip to content

Commit

Permalink
fix: Check if fetching account membership in membership card
Browse files Browse the repository at this point in the history
  • Loading branch information
josebui committed Jan 10, 2024
1 parent 42f6d80 commit 0f6739f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collaboration/components/MembershipCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const Content = props => {
);
}

if (!accountMembership && closedGroup) {
if ((!accountMembership || accountMembership.fetching) && closedGroup) {
return (
<CardContent>
<Trans
Expand Down

0 comments on commit 0f6739f

Please sign in to comment.