* 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 6eae841e4a
commit d209255015
2 changed files with 6 additions and 8 deletions

View File

@@ -336,13 +336,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} />}
</>
);