diff --git a/lms/djangoapps/branding/toggles.py b/lms/djangoapps/branding/toggles.py index e6e54ebbcb..ba7b3407d7 100644 --- a/lms/djangoapps/branding/toggles.py +++ b/lms/djangoapps/branding/toggles.py @@ -11,5 +11,5 @@ def use_catalog_mfe(): Determine if Catalog MFE is enabled, replacing student_dashboard """ return configuration_helpers.get_value( - 'ENABLE_CATALOG_MICROFRONTEND', settings.FEATURES.get('ENABLE_CATALOG_MICROFRONTEND') + 'ENABLE_CATALOG_MICROFRONTEND', settings.FEATURES['ENABLE_CATALOG_MICROFRONTEND'] ) diff --git a/lms/envs/common.py b/lms/envs/common.py index 9dd85470f7..ea7f97556c 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -885,10 +885,10 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the catalog. - # .. toggle_use_cases: temporary, open_edx + # .. toggle_use_cases: temporary # .. toggle_creation_date: 2025-05-15 # .. toggle_target_removal_date: 2025-11-01 - 'ENABLE_CATALOG_MICROFRONTEND': os.environ.get("EDXAPP_ENABLE_CATALOG_MFE", False), + 'ENABLE_CATALOG_MICROFRONTEND': False, ### ORA Feature Flags ### # .. toggle_name: FEATURES['ENABLE_ORA_ALL_FILE_URLS']