Skip to content

Commit

Permalink
fix: Team Member Card View
Browse files Browse the repository at this point in the history
  • Loading branch information
badalkhatri0924 committed Oct 28, 2023
1 parent 3b09014 commit da9d745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/features/team-members.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function TeamMembers({ publicTeam = false, kabanView = IssuesView.CARDS }
break;
case kabanView === IssuesView.CARDS:
teamMembersView = (
<TeamMembersCardView teamMembers={members} currentUser={currentUser} publicTeam={publicTeam} />
<TeamMembersCardView teamMembers={$members} currentUser={currentUser} publicTeam={publicTeam} />
);
break;
case kabanView === IssuesView.TABLE:
Expand Down

0 comments on commit da9d745

Please sign in to comment.