1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

fix: adds bottom margin to SSO sync info box (#2674)

https://linear.app/unleash/issue/2-495/group-form-small-ui-fix
This commit is contained in:
Nuno Góis 2022-12-13 13:01:53 +00:00 committed by GitHub
parent 419640fb2b
commit a8cd3166d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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';
@ -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 {
@ -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');