src: Resolve last remaining circular dependency
Nothing added, nothing removed, stuff moved around a bit.
This commit is contained in:
parent
ba9282b61c
commit
46b6fda9db
3 changed files with 3 additions and 4 deletions
|
|
@ -14,7 +14,8 @@ import { useFlag } from '@unleash/proxy-client-react';
|
|||
import { useNavigate, useSearchParams } from 'react-router-dom';
|
||||
|
||||
import DetailsStep from './steps/Details';
|
||||
import FileSystemStep, { FileSystemContext } from './steps/FileSystem';
|
||||
import FileSystemStep from './steps/FileSystem';
|
||||
import { FileSystemContext } from './steps/FileSystem/FileSystemTable';
|
||||
import FirstBootStep from './steps/FirstBoot';
|
||||
import ImageOutputStep from './steps/ImageOutput';
|
||||
import OscapStep from './steps/Oscap';
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ import {
|
|||
import { useFilesystemValidation } from '../../utilities/useValidation';
|
||||
import { HookValidatedInput } from '../../ValidatedTextInput';
|
||||
|
||||
import { FileSystemContext } from '.';
|
||||
export const FileSystemContext = React.createContext<boolean>(true);
|
||||
|
||||
export const MinimumSizePopover = () => {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -11,8 +11,6 @@ import { selectFileSystemConfigurationType } from '../../../../store/wizardSlice
|
|||
import { useHasSpecificTargetOnly } from '../../utilities/hasSpecificTargetOnly';
|
||||
export type FileSystemConfigurationType = 'automatic' | 'manual';
|
||||
|
||||
export const FileSystemContext = React.createContext<boolean>(true);
|
||||
|
||||
const FileSystemStep = () => {
|
||||
const fileSystemConfigurationType = useAppSelector(
|
||||
selectFileSystemConfigurationType
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue