diff --git a/src/components/page/www/page.jsx b/src/components/page/www/page.jsx index 8fe39a87116..aaa7750f2f2 100644 --- a/src/components/page/www/page.jsx +++ b/src/components/page/www/page.jsx @@ -9,8 +9,8 @@ const ErrorBoundary = require('../../errorboundary/errorboundary.jsx'); const PrivacyBanner = require('../../privacy-banner/privacy-banner.jsx'); const TosModal = require('../../modal/tos/modal.jsx'); const ParentalConsentView = require('../../../views/parental-consent/parental-consent-view.jsx'); -const ALLOWED_PAGES = ['community_guidelines']; const StudentDeactivationBanner = require('../../student-deactivation-banner/student-deactivation-banner.jsx'); +const ALLOWED_PAGES = ['community_guidelines', 'contact_us']; const today = new Date(); const semi = today.getDate() === 1 && today.getMonth() === 3; @@ -45,7 +45,7 @@ const Page = ({ !isAllowedPage && !shouldDisplayTosModal; - const shouldDisplayStudentDeactivationBanner = !!user; + const shouldDisplayStudentDeactivationBanner = !!(user.isStudent && user); return (