Component "{Component}" expected prop "{propName}" but no value was passed to prepareComponent()
Explanation
You passed the following initProps argument to withInitAction for the component {Component}:
{initProps}
prepareComponent needs to know which values to pass to your init action but you did not provide a value for the prop {propName}.
Solution
Please provide a value for {propName} in the second argument of prepareComponent.
You passed the initProps argument to withInitAction for the component you are trying to prepare. prepareComponent needs to know the values of these props to pass them to your init action, but you did not provide a value for all of them.
Solution
Please provide a value for all your init props in the second argument of prepareComponent.