Skip to content

Commit

Permalink
revert billing in console
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Mar 11, 2023
1 parent 4fb23f9 commit a3647c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions assets/src/components/account/groups/Groups.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { useState } from 'react'
import { ScrollablePage } from 'components/utils/layout/ScrollablePage'
import BillingLegacyUserBanner from 'components/billing/BillingLegacyUserBanner'
import BillingFeatureBlockBanner from 'components/billing/BillingFeatureBlockBanner'

import { Flex } from 'honorable'

Expand All @@ -24,20 +22,13 @@ export function Groups() {
direction="column"
height="100%"
>
<BillingLegacyUserBanner feature="Groups" />
<List height="100%">
<GroupSearchHeader
q={q}
setQ={setQ}
/>
<GroupsList q={q} />
</List>
<BillingFeatureBlockBanner
feature="groups"
planFeature="userManagement"
description="Organize your users into groups to more easily apply permissions to sub-sections of your team. e.g. ops, end-users, and admins."
placeholderImageURL="/placeholder-groups.png"
/>
</Flex>
</ScrollablePage>
)
Expand Down
9 changes: 0 additions & 9 deletions assets/src/components/account/roles/Roles.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { useState } from 'react'
import { ScrollablePage } from 'components/utils/layout/ScrollablePage'
import BillingLegacyUserBanner from 'components/billing/BillingLegacyUserBanner'
import BillingFeatureBlockBanner from 'components/billing/BillingFeatureBlockBanner'

import { Flex } from 'honorable'

Expand All @@ -24,20 +22,13 @@ export default function Roles() {
direction="column"
height="100%"
>
<BillingLegacyUserBanner feature="Roles" />
<List height="100%">
<RolesSearchHeader
q={q}
setQ={setQ}
/>
<RolesList q={q} />
</List>
<BillingFeatureBlockBanner
feature="roles"
planFeature="userManagement"
description="Define granular permissions for your organization’s users and apply them to groups or individuals."
placeholderImageURL="/placeholder-roles.png"
/>
</Flex>
</ScrollablePage>
)
Expand Down

0 comments on commit a3647c2

Please sign in to comment.