diff --git a/Source/OEXConfig+AppFeatures.swift b/Source/OEXConfig+AppFeatures.swift index b4c036758..10254bbc8 100644 --- a/Source/OEXConfig+AppFeatures.swift +++ b/Source/OEXConfig+AppFeatures.swift @@ -84,11 +84,11 @@ extension OEXConfig { } var isNewDashboardEnabled: Bool { - return bool(forKey: "NEW_DASHBOARD_ENABLED", defaultValue: true) + return bool(forKey: "NEW_DASHBOARD_ENABLED", defaultValue: false) } var isNewComponentNavigationEnabled: Bool { - return bool(forKey: "NEW_COMPONENT_NAVIGATION_ENABLED", defaultValue: true) && isNewDashboardEnabled + return bool(forKey: "NEW_COMPONENT_NAVIGATION_ENABLED", defaultValue: false) && isNewDashboardEnabled } }