As I noticed I fetch categories list asynchronously so, when the dropdown component renders the list is empty so I add a conditional render.
{!categories || categories.length === 0 ? (<Loader />) : (<DropDown/>)}