Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
revert: revert the default value for app nav feature
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Sep 28, 2023
1 parent 88e9588 commit c43a543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/OEXConfig+AppFeatures.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit c43a543

Please sign in to comment.