@@ -24,7 +24,6 @@ import {
2424} from '@oxide/api'
2525import { Access24Icon } from '@oxide/design-system/icons/react'
2626
27- import { AccessNameCell } from '~/components/AccessNameCell'
2827import { HL } from '~/components/HL'
2928import { RoleBadgeCell } from '~/components/RoleBadgeCell'
3029import {
@@ -39,6 +38,7 @@ import { Button } from '~/ui/lib/Button'
3938import { EmptyMessage } from '~/ui/lib/EmptyMessage'
4039import { PageHeader , PageTitle } from '~/ui/lib/PageHeader'
4140import { TableActions , TableEmptyBox } from '~/ui/lib/Table'
41+ import { accessTypeLabel } from '~/util/access'
4242import { groupBy , isTruthy } from '~/util/array'
4343
4444const EmptyState = ( { onClick } : { onClick : ( ) => void } ) => (
@@ -127,7 +127,11 @@ export function ProjectAccessPage() {
127127
128128 const columns = useMemo (
129129 ( ) => [
130- colHelper . accessor ( 'name' , { header : 'Name' , cell : AccessNameCell } ) ,
130+ colHelper . accessor ( 'name' , { header : 'Name' } ) ,
131+ colHelper . accessor ( 'identityType' , {
132+ header : 'Type' ,
133+ cell : ( props ) => accessTypeLabel ( props . getValue ( ) ) ,
134+ } ) ,
131135 colHelper . accessor ( 'siloRole' , {
132136 header : 'Silo role' ,
133137 cell : RoleBadgeCell ,
0 commit comments