Skip to content

Commit 506cca1

Browse files
committed
polish
1 parent 6ffcc94 commit 506cca1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

site/src/pages/DeploymentSettingsPage/IdpOrgSyncPage/IdpOrgSyncPageView.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -414,28 +414,28 @@ const OrganizationRow: FC<OrganizationRowProps> = ({
414414
return (
415415
<TableRow data-testid={`idp-org-${idpOrg}`}>
416416
<TableCell>
417-
<Stack
418-
direction="row"
419-
alignItems="center"
420-
spacing={1}
421-
className="text-content-primary"
422-
>
417+
<div className="flex flex-row items-center gap-2 text-content-primary">
423418
{idpOrg}
424419
{!exists && (
425420
<TooltipProvider>
426421
<Tooltip>
427422
<TooltipTrigger asChild>
428423
<TriangleAlert className="size-icon-xs cursor-pointer text-content-warning" />
429424
</TooltipTrigger>
430-
<TooltipContent className="p-2 text-xs text-content-secondary max-w-sm">
425+
<TooltipContent
426+
align="start"
427+
alignOffset={-8}
428+
sideOffset={8}
429+
className="p-2 text-xs text-content-secondary max-w-sm"
430+
>
431431
This value has not be seen in the specified claim field
432432
before. You might want to check your IdP configuration and
433433
ensure that this value is not misspelled.
434434
</TooltipContent>
435435
</Tooltip>
436436
</TooltipProvider>
437437
)}
438-
</Stack>
438+
</div>
439439
</TableCell>
440440
<TableCell>
441441
<OrganizationPills organizations={coderOrgs} />

0 commit comments

Comments
 (0)