Blueprints: Update Import modal padding

The `<ActionGroup>` should be a child of `<Form>`, moving it improves the padding on the Import modal.
This commit is contained in:
regexowl 2024-04-16 17:13:34 +02:00 committed by Amir Fefer
parent 7115b43c3d
commit df924ec097

View file

@ -102,13 +102,13 @@ export const ImportBlueprintModal: React.FunctionComponent<
</HelperText>
</FormHelperText>
</FormGroup>
<ActionGroup>
<Button type="button">Review and finish</Button>
<Button variant="link" type="button" onClick={onImportClose}>
Cancel
</Button>
</ActionGroup>
</Form>
<ActionGroup>
<Button type="button">Review and finish</Button>
<Button variant="link" type="button" onClick={onImportClose}>
Cancel
</Button>
</ActionGroup>
</Modal>
);
};