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

Commit

Permalink
test: turn of app nav as default
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Sep 28, 2023
1 parent 96aa91d commit 88e9588
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: 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
}
}

Expand Down

0 comments on commit 88e9588

Please sign in to comment.