Updated some pages and layouts for navigation noSearch and showBackBtn

• Updated:
- some pages and layouts for navigation noSearch and showBackBtn
This commit is contained in:
mgabdev
2020-10-30 12:57:20 -05:00
parent 04cf1ad7ce
commit 73e1584d43
8 changed files with 5 additions and 23 deletions

View File

@@ -15,7 +15,6 @@ class DefaultLayout extends React.PureComponent {
showBackBtn,
tabs,
title,
noSearch,
} = this.props
return (
@@ -28,7 +27,6 @@ class DefaultLayout extends React.PureComponent {
showBackBtn={showBackBtn}
tabs={tabs}
title={title}
noSearch={noSearch}
>
{children}
</Layout>
@@ -45,7 +43,6 @@ DefaultLayout.propTypes = {
noRightSidebar: PropTypes.bool,
page: PropTypes.string,
showBackBtn: PropTypes.bool,
noSearch: PropTypes.bool,
tabs: PropTypes.array,
title: PropTypes.string.isRequired,
}