Skip to content

Commit

Permalink
fix: adds bottom margin to SSO sync info box (#2674)
Browse files Browse the repository at this point in the history
  • Loading branch information
nunogois committed Dec 13, 2022
1 parent 419640f commit a8cd316
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/component/admin/groups/GroupForm/GroupForm.tsx
Expand Up @@ -7,7 +7,6 @@ import { ConditionallyRender } from 'component/common/ConditionallyRender/Condit
import { GroupFormUsersSelect } from './GroupFormUsersSelect/GroupFormUsersSelect';
import { GroupFormUsersTable } from './GroupFormUsersTable/GroupFormUsersTable';
import { ItemList } from 'component/common/ItemList/ItemList';
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
import useAuthSettings from 'hooks/api/getters/useAuthSettings/useAuthSettings';
import { Link } from 'react-router-dom';
import { HelpIcon } from 'component/common/HelpIcon/HelpIcon';
Expand Down Expand Up @@ -57,6 +56,7 @@ const StyledDescriptionBlock = styled('div')(({ theme }) => ({
color: theme.palette.grey[900],
fontSize: theme.fontSizes.smallBody,
borderRadius: theme.shape.borderRadiusMedium,
marginBottom: theme.spacing(2),
}));

interface IGroupForm {
Expand Down Expand Up @@ -89,8 +89,6 @@ export const GroupForm: FC<IGroupForm> = ({
mode,
children,
}) => {
const { uiConfig, isOss } = useUiConfig();

const { config: oidcSettings } = useAuthSettings('oidc');
const { config: samlSettings } = useAuthSettings('saml');

Expand Down

0 comments on commit a8cd316

Please sign in to comment.