Skip to content

Commit

Permalink
fix: Fixed type name
Browse files Browse the repository at this point in the history
  • Loading branch information
josebui committed Nov 21, 2023
1 parent 5bb7c2e commit 3022508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/collaboration/membershipsUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type MembershipQuery = Partial<
CollaborationMembershipsPendingFragment
>;

export type MembershipInfo = {
export type MembershipsInfo = {
totalCount?: number;
pendingCount?: number;
accountMembership?: Membership;
Expand All @@ -41,7 +41,7 @@ export type MembershipInfo = {

export type MembershipList = {
// TODO: massage membershipsUtils/Service so more of these can be required
membershipsInfo?: MembershipInfo;
membershipsInfo?: MembershipsInfo;
id: string;
slug: string;
membershipType: 'CLOSED' | 'OPEN';
Expand Down

0 comments on commit 3022508

Please sign in to comment.