Wizard: Fix the Failed prop type error
Incorrect proptype for `selectedAvailablePackages` was causing following error: ```Warning: Failed prop type: Invalid prop `selectedAvailablePackages` of type `object` supplied to `ExactMatch`, expected an array.``` This fixes the problem.
This commit is contained in:
parent
c3397794d6
commit
87ff2a24c9
1 changed files with 1 additions and 1 deletions
|
|
@ -488,7 +488,7 @@ ExactMatch.propTypes = {
|
|||
pkgList: PropTypes.arrayOf(PropTypes.object),
|
||||
search: PropTypes.string,
|
||||
chosenPackages: PropTypes.object,
|
||||
selectedAvailablePackages: PropTypes.arrayOf(PropTypes.string),
|
||||
selectedAvailablePackages: PropTypes.object,
|
||||
handleSelectAvailableFunc: PropTypes.func,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue