1 parent 99a4f27 commit 9053fc1Copy full SHA for 9053fc1
1 file changed
packages/clerk-js/src/ui/components/OrganizationProfile/OrganizationMembers.tsx
@@ -88,7 +88,16 @@ export const OrganizationMembers = withCardStateProvider(() => {
88
</TabPanel>
89
{isAdmin && (
90
<TabPanel sx={{ width: '100%' }}>
91
- <InvitedMembersList />
+ <Flex
92
+ sx={t => ({
93
+ flexDirection: 'column',
94
+ width: '100%',
95
+ marginTop: __unstable_manageBillingUrl ? t.space.$4 : 0,
96
+ })}
97
+ >
98
+ {isAdmin && __unstable_manageBillingUrl && <MembershipWidget />}
99
+ <InvitedMembersList />
100
+ </Flex>
101
102
)}
103
</TabPanels>
0 commit comments