@@ -166,13 +166,12 @@ const IdpMappingTable: FC<IdpMappingTableProps> = ({
166
166
< TableRow >
167
167
< TableCell colSpan = { 999 } >
168
168
< EmptyState
169
- message = { `No ${ type } Mappings ` }
169
+ message = { `No ${ type . toLocaleLowerCase ( ) } mappings ` }
170
170
isCompact
171
171
cta = {
172
- < Link
173
- text = { `How to setup IdP ${ type } sync` }
174
- href = { docs ( "/admin/users/idp-sync" ) }
175
- />
172
+ < Link href = { docs ( "/admin/users/idp-sync" ) } >
173
+ How to setup IdP { type . toLocaleLowerCase ( ) } sync
174
+ </ Link >
176
175
}
177
176
/>
178
177
</ TableCell >
@@ -202,7 +201,7 @@ const GroupRow: FC<GroupRowProps> = ({ idpGroup, coderGroup, onDelete }) => {
202
201
< TableCell >
203
202
< Button
204
203
variant = "outline"
205
- className = "w-8 h-8 px-1.5 py-1.5 text-content-secondary "
204
+ className = "w-8 h-8 min-w-10 text-content-primary "
206
205
aria-label = "delete"
207
206
onClick = { ( ) => onDelete ( idpGroup ) }
208
207
>
@@ -655,7 +654,7 @@ const RoleRow: FC<RoleRowProps> = ({ idpRole, coderRoles, onDelete }) => {
655
654
< TableCell >
656
655
< Button
657
656
variant = "outline"
658
- className = "w-8 h-8 px-1.5 py-1.5 text-content-secondary "
657
+ className = "w-8 h-8 min-w-10 text-content-primary "
659
658
aria-label = "delete"
660
659
onClick = { ( ) => onDelete ( idpRole ) }
661
660
>
@@ -700,10 +699,9 @@ const LegacyGroupSyncHeader: FC = () => {
700
699
configure IdP sync via the CLI or the UI, which enables sync to be
701
700
configured for any organization, and for those settings to be
702
701
persisted without manually setting environment variables.{ " " }
703
- < Link
704
- text = "Learn more…"
705
- href = { docs ( "/admin/users/idp-sync" ) }
706
- />
702
+ < Link href = { docs ( "/admin/users/idp-sync" ) } >
703
+ Learn more…
704
+ </ Link >
707
705
</ HelpTooltipText >
708
706
</ HelpTooltipContent >
709
707
</ HelpTooltip >
0 commit comments