Wizard: RHEL 10 support

This commit is contained in:
Sanne Raymaekers 2024-11-18 13:10:43 +01:00
parent 79e0676c7c
commit 3ada1ceb68
3 changed files with 17 additions and 3 deletions

View file

@ -16,6 +16,7 @@ import {
RHEL_9_BETA,
RHEL_9_FULL_SUPPORT,
RHEL_9_MAINTENANCE_SUPPORT,
RHEL_10_BETA,
} from '../../../../constants';
import { useAppDispatch, useAppSelector } from '../../../../store/hooks';
import { Distributions } from '../../../../store/imageBuilderApi';
@ -45,7 +46,7 @@ const ReleaseSelect = () => {
};
const setDescription = (key: Distributions) => {
if (key === RHEL_9_BETA) {
if (key === RHEL_9_BETA || key === RHEL_10_BETA) {
return '';
}