diff --git a/lms/djangoapps/branding/toggles.py b/lms/djangoapps/branding/toggles.py index ba7b3407d7..9612843f0e 100644 --- a/lms/djangoapps/branding/toggles.py +++ b/lms/djangoapps/branding/toggles.py @@ -8,8 +8,8 @@ from openedx.core.djangoapps.site_configuration import helpers as configuration_ def use_catalog_mfe(): """ - Determine if Catalog MFE is enabled, replacing student_dashboard + Returns a boolean = true if the Catalog MFE is enabled. """ return configuration_helpers.get_value( - 'ENABLE_CATALOG_MICROFRONTEND', settings.FEATURES['ENABLE_CATALOG_MICROFRONTEND'] + 'ENABLE_CATALOG_MICROFRONTEND', settings.FEATURES.get('ENABLE_CATALOG_MICROFRONTEND') )