diff --git a/src/components/PageWrapper.jsx b/src/components/PageWrapper.jsx index 783ecf4e..a14422ae 100644 --- a/src/components/PageWrapper.jsx +++ b/src/components/PageWrapper.jsx @@ -7,8 +7,8 @@ import { PAGE_TITLE } from '../constants'; export const DATA_TEST_ID = 'enterprise-catalogs-content'; // eslint-disable-next-line react/prop-types -const PageWrapper = ({ children, className }) => ( - +const PageWrapper = ({ children, className, size }) => ( +
{children}
@@ -16,6 +16,7 @@ const PageWrapper = ({ children, className }) => ( PageWrapper.defaultProps = { className: '', + size: undefined, }; export default PageWrapper; diff --git a/src/components/catalogs/CatalogSearch.jsx b/src/components/catalogs/CatalogSearch.jsx index 6429724d..73dbd4fa 100644 --- a/src/components/catalogs/CatalogSearch.jsx +++ b/src/components/catalogs/CatalogSearch.jsx @@ -220,7 +220,7 @@ const CatalogSearch = (intl) => { const defaultInstantSearchFilter = `${LEARNING_TYPE_REFINEMENT}:${CONTENT_TYPE_COURSE} OR ${LEARNING_TYPE_REFINEMENT}:${CONTENT_TYPE_PROGRAM} OR ${LEARNING_TYPE_REFINEMENT}:"${EXEC_ED_TITLE}"`; return ( - +