Skip to content

Commit 63b1cf1

Browse files
committed
fix: remove required validation from title prop in HeaderWrapper component
1 parent 0d0639c commit 63b1cf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/HeaderWrapper.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const HeaderWrapper = ({ children, title, className }) => {
1515

1616
HeaderWrapper.propTypes = {
1717
children: PropTypes.node.isRequired,
18-
title: PropTypes.string.isRequired,
18+
title: PropTypes.string,
1919
className: PropTypes.string,
2020
};
2121

0 commit comments

Comments
 (0)