debian-image-builder-frontend/src/Components/CreateImageWizard/utilities/hasSpecificTargetOnly.ts
regexowl 4fb37c187e src: Rename "V2" folders to just Wizard
This replaces all occurences of "CreateImageWizardV2" with just "CreateImageWizard" as it is the only version now.
2024-07-17 11:17:06 +02:00

8 lines
375 B
TypeScript

import { useAppSelector } from '../../../store/hooks';
import { ImageTypes } from '../../../store/imageBuilderApi';
import { selectImageTypes } from '../../../store/wizardSlice';
export const useHasSpecificTargetOnly = (target: ImageTypes) => {
const environments = useAppSelector(selectImageTypes);
return environments.length === 1 && environments.includes(target);
};