🐛 (workspace) Fix members list limit bug
This commit is contained in:
@@ -97,8 +97,7 @@ export const MembersList = () => {
|
||||
!isSeatsLimitReached({
|
||||
plan: workspace?.plan,
|
||||
customSeatsLimit: workspace?.customSeatsLimit,
|
||||
existingMembersCount: currentMembersCount,
|
||||
existingInvitationsCount: invitations.length,
|
||||
existingMembersAndInvitationsCount: currentMembersCount,
|
||||
})
|
||||
|
||||
return (
|
||||
|
||||
@@ -38,8 +38,8 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
||||
])
|
||||
if (
|
||||
isSeatsLimitReached({
|
||||
existingMembersCount,
|
||||
existingInvitationsCount,
|
||||
existingMembersAndInvitationsCount:
|
||||
existingMembersCount + existingInvitationsCount,
|
||||
...workspace,
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user