Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fuzzy-hotels-lay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/clerk-js': patch
---

Added a gap between no-permissions notice and pricing table in `<OrganizationProfile/>` billing page
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ const OrganizationBillingPageInternal = withCardStateProvider(() => {
</Protect>
</Flex>
) : (
<>
<Flex
sx={{ width: '100%', flexDirection: 'column' }}
gap={4}
>
<Protect condition={has => !has({ permission: 'org:sys_billing:manage' })}>
<Alert
variant='info'
Expand All @@ -132,7 +135,7 @@ const OrganizationBillingPageInternal = withCardStateProvider(() => {
<PricingTableContext.Provider value={{ componentName: 'PricingTable', mode: 'modal' }}>
<PricingTable />
</PricingTableContext.Provider>
</>
</Flex>
)}
</TabPanel>
<TabPanel sx={{ width: '100%' }}>
Expand Down