Wizard: Remove prop validation for ReviewStepTables and ReviewStepTextLists
This removes prop validation that was left behind after the props were removed during a Review step updates PR review.
This commit is contained in:
parent
dcb1e23298
commit
02a584b36f
2 changed files with 0 additions and 27 deletions
|
|
@ -10,7 +10,6 @@ import {
|
|||
Thead,
|
||||
Tr,
|
||||
} from '@patternfly/react-table';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import { UNIT_GIB, UNIT_MIB } from '../../../constants';
|
||||
|
||||
|
|
@ -105,15 +104,3 @@ export const RepositoriesTable = () => {
|
|||
</Panel>
|
||||
);
|
||||
};
|
||||
|
||||
FSReviewTable.propTypes = {
|
||||
fsc: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
};
|
||||
|
||||
PackagesTable.propTypes = {
|
||||
packages: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
};
|
||||
|
||||
RepositoriesTable.propTypes = {
|
||||
repositories: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ import {
|
|||
TextVariants,
|
||||
} from '@patternfly/react-core';
|
||||
import { ExclamationTriangleIcon, HelpIcon } from '@patternfly/react-icons';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import ActivationKeyInformation from './ActivationKeyInformation';
|
||||
import {
|
||||
|
|
@ -535,16 +534,3 @@ export const ImageDetailsList = () => {
|
|||
</TextContent>
|
||||
);
|
||||
};
|
||||
|
||||
TargetEnvAWSList.propTypes = {
|
||||
awsSources: PropTypes.arrayOf(PropTypes.object),
|
||||
isSuccessAWSSources: PropTypes.bool,
|
||||
};
|
||||
|
||||
TargetEnvGCPList.propTypes = {
|
||||
googleAccType: PropTypes.object,
|
||||
};
|
||||
|
||||
FSCList.propTypes = {
|
||||
minSize: PropTypes.string,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue