Invalid prop type

This commit is contained in:
Christian Schmidt 2024-09-28 16:16:14 +02:00
parent 9d664f87a0
commit 7c3834a8c8

View File

@ -16,5 +16,5 @@ export const SearchSection = ({ title, onClickMore, children }) => (
SearchSection.propTypes = {
title: PropTypes.node.isRequired,
onClickMore: PropTypes.func,
children: PropTypes.children,
};
children: PropTypes.node,
};