Skip to content

Commit

Permalink
Wizard: adapt file system step to new compliance state
Browse files Browse the repository at this point in the history
  • Loading branch information
croissanne committed Sep 23, 2024
1 parent 62de773 commit e7b73e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import { useAppDispatch, useAppSelector } from '../../../../store/hooks';
import {
changeFileSystemConfigurationType,
selectFileSystemConfigurationType,
selectProfile,
selectComplianceProfileID,
} from '../../../../store/wizardSlice';

const FileSystemPartition = () => {
const dispatch = useAppDispatch();
const fileSystemConfigurationType = useAppSelector(
selectFileSystemConfigurationType
);
const hasOscapProfile = useAppSelector(selectProfile);
const hasOscapProfile = useAppSelector(selectComplianceProfileID);

if (hasOscapProfile) {
return undefined;
Expand Down

0 comments on commit e7b73e2

Please sign in to comment.