Skip to content

Commit 115a48f

Browse files
committed
fix: fix legacy group mappings styles
1 parent 9ea53bf commit 115a48f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

site/src/pages/ManagementSettingsPage/IdpSyncPage/IdpSyncPageView.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ const IdpGroupSyncForm = ({
426426
</div>
427427
</div>
428428

429-
<div className="flex gap-12">
429+
<div className="flex flex-col">
430430
<div className="flex flex-col w-full gap-2">
431431
<IdpMappingTable type="Group" isEmpty={groupMappingCount === 0}>
432432
{groupSyncSettings?.mapping &&
@@ -446,7 +446,7 @@ const IdpGroupSyncForm = ({
446446
</div>
447447
</div>
448448
{groupSyncSettings?.legacy_group_name_mapping && (
449-
<section>
449+
<div>
450450
<LegacyGroupSyncHeader />
451451
<IdpMappingTable
452452
type="Group"
@@ -463,7 +463,7 @@ const IdpGroupSyncForm = ({
463463
/>
464464
))}
465465
</IdpMappingTable>
466-
</section>
466+
</div>
467467
)}
468468
</div>
469469
</fieldset>
@@ -706,15 +706,15 @@ const LegacyGroupSyncHeader: FC = () => {
706706
}}
707707
>
708708
<div className="flex items-end gap-2">
709-
<span>Legacy Group Sync Settings</span>
709+
<span>Legacy group sync settings</span>
710710
<HelpTooltip>
711711
<HelpTooltipTrigger />
712712
<HelpTooltipContent>
713-
<HelpTooltipTitle>Legacy Group Sync Settings</HelpTooltipTitle>
713+
<HelpTooltipTitle>Legacy group sync settings</HelpTooltipTitle>
714714
<HelpTooltipText>
715715
These settings were configured using environment variables, and
716716
only apply to the default organization. It is now recommended to
717-
configure IdP sync via the CLI, which enables sync to be
717+
configure IdP sync via the CLI or the UI, which enables sync to be
718718
configured for any organization, and for those settings to be
719719
persisted without manually setting environment variables.{" "}
720720
<Link href={docs("/admin/users/idp-sync")}>

0 commit comments

Comments
 (0)