Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ljankoschek committed Jun 28, 2024
1 parent dd1f4e7 commit b49e5d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const LinkedOrganizationsScreen = () => {
await catchup(channel);
// sometimes there are erros without the extra waiting time - temporary fix
await new Promise((f) => setTimeout(f, 1000));
setLinkedLaoId(linkedLaoId);
setLinkedLaoId(linkedOrgId);
};
if (
recvChallengeState &&
Expand Down Expand Up @@ -115,7 +115,7 @@ const LinkedOrganizationsScreen = () => {
</ListItem>
))}
</View>
{linkedLaoId && isOrganizer && <BroadcastLinkedOrgInfo linkedLaoId={linkedLaoId} />}
{linkedLaoId && <BroadcastLinkedOrgInfo linkedLaoId={linkedLaoId} />}
</ScreenWrapper>
</View>
);
Expand Down

0 comments on commit b49e5d6

Please sign in to comment.