From 3965562cd7171092025d2c485495907076d285a8 Mon Sep 17 00:00:00 2001 From: saeedbashir Date: Tue, 19 Sep 2023 11:14:54 +0500 Subject: [PATCH] chore: enable app nav overhaul with default to true --- Source/OEXConfig+AppFeatures.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OEXConfig+AppFeatures.swift b/Source/OEXConfig+AppFeatures.swift index 10254bbc8..b4c036758 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: false) + return bool(forKey: "NEW_DASHBOARD_ENABLED", defaultValue: true) } var isNewComponentNavigationEnabled: Bool { - return bool(forKey: "NEW_COMPONENT_NAVIGATION_ENABLED", defaultValue: false) && isNewDashboardEnabled + return bool(forKey: "NEW_COMPONENT_NAVIGATION_ENABLED", defaultValue: true) && isNewDashboardEnabled } }