CreateImageWizard: Drop isBeta() check for centos

The accompanying text allows us to enable this for non-beta.
This commit is contained in:
Sanne Raymaekers 2022-09-14 13:38:50 +02:00
parent fa7105c38b
commit b86a9b712d

View file

@ -40,13 +40,12 @@ const ImageOutputReleaseSelect = ({ label, isRequired, ...props }) => {
onClear={handleClear}
selections={RELEASES[getState()?.values?.[input.name]]}
isOpen={isOpen}
{...(insights.chrome.isBeta() &&
!showDevelopmentOptions && {
loadingVariant: {
text: 'Show options for further development of RHEL',
onClick: handleExpand,
},
})}
{...(!showDevelopmentOptions && {
loadingVariant: {
text: 'Show options for further development of RHEL',
onClick: handleExpand,
},
})}
>
{Object.entries(RELEASES)
.filter(([key]) => {