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

Commit

Permalink
chore: enable app nav overhaul with default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Sep 19, 2023
1 parent e8167e3 commit 3965562
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 3965562

Please sign in to comment.