Wizard: Remove alert from OpenSCAP step

Information about required packages, services and kernel arguments is back on the step. Meaning we can remove the alert as per UX recommendation.
This commit is contained in:
regexowl 2025-07-30 08:51:10 +02:00 committed by Klara Simickova
parent 8cf161d4e5
commit d5321bb078

View file

@ -42,18 +42,6 @@ const Oscap = ({ majorVersion }: OscapPropTypes) => {
)}
{complianceType === 'openscap' ? <ProfileSelector /> : <PolicySelector />}
{oscapProfile && <OscapProfileInformation />}
{oscapProfile && (
<Alert
variant="info"
isInline
isPlain
title="Additional customizations"
>
Selecting an OpenSCAP profile will cause the appropriate packages,
file system configuration, kernel arguments, and services to be added
to your image.
</Alert>
)}
</>
);
};