* sync collection

* remove lock

* fix ts

* fix: ts
This commit is contained in:
Archer
2025-03-19 21:14:19 +08:00
committed by archer
parent 87e90c37bd
commit 6fee39873d
2 changed files with 6 additions and 8 deletions

View File

@@ -385,13 +385,7 @@ function MemberTable({ Tabs }: { Tabs: React.ReactNode }) {
</Box>
<ConfirmLeaveTeamModal />
{isOpenInvite && userInfo?.team?.teamId && (
<InviteModal
teamId={userInfo.team.teamId}
onClose={onCloseInvite}
onSuccess={refetchMembers}
/>
)}
{isOpenInvite && userInfo?.team?.teamId && <InviteModal onClose={onCloseInvite} />}
{isOpenTeamTagsAsync && <TeamTagModal onClose={onCloseTeamTagsAsync} />}
</>
);