Skip to content

Commit

Permalink
Remove Survey banner
Browse files Browse the repository at this point in the history
  • Loading branch information
joserodolfofreitas committed May 2, 2024
1 parent 45cf002 commit 678e198
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/banner/AppHeaderBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function getDefaultHiringMessage() {
}

export default function AppHeaderBanner() {
const showSurveyMessage = true;
const showSurveyMessage = false;
const bannerMessage = showSurveyMessage ? getSurveyMessage() : getDefaultHiringMessage();

return FEATURE_TOGGLE.enable_website_banner ? (
Expand Down
4 changes: 2 additions & 2 deletions docs/src/featureToggle.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// need to use commonjs export so that @mui/internal-markdown can use
module.exports = {
enable_website_banner: true,
enable_website_banner: false,
enable_toc_banner: true,
enable_docsnav_banner: true,
enable_docsnav_banner: false,
enable_job_banner: false,
};

0 comments on commit 678e198

Please sign in to comment.