Skip to content

Commit

Permalink
Turned off cohort wizard by default and adjusted home screen layout
Browse files Browse the repository at this point in the history
  • Loading branch information
tznind committed Mar 18, 2020
1 parent 176c25e commit 65df88f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Reusable/ReusableLibraryCode/Settings/UserSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ public static bool Wait5SecondsAfterStartupUI
set { AppSettings.AddOrUpdateValue("Wait5SecondsAfterStartupUI", value); }
}

public static bool ShowCohortWizard
public static bool ShowCohortWizard
{
get { return AppSettings.GetValueOrDefault("ShowCohortWizard", true); }
get { return AppSettings.GetValueOrDefault("ShowCohortWizard", false); }
set { AppSettings.AddOrUpdateValue("ShowCohortWizard", value); }
}
#endregion
Expand Down

0 comments on commit 65df88f

Please sign in to comment.