From 549b78e51de42a700c85f52d552405b68607ff1e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 15 Apr 2013 15:09:27 -0400 Subject: [PATCH] reduce uses of Task.Run --- dashboard-ui/scripts/wizardstartpage.js | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/dashboard-ui/scripts/wizardstartpage.js b/dashboard-ui/scripts/wizardstartpage.js index 344d4321b2..1421ad9ccc 100644 --- a/dashboard-ui/scripts/wizardstartpage.js +++ b/dashboard-ui/scripts/wizardstartpage.js @@ -1,17 +1,6 @@ var WizardStartPage = { gotoNextPage: function () { - - ApiClient.getUsers().done(function (users) { - - if (users.length > 1) { - - Dashboard.navigate('wizardlibrary.html'); - - } else { - Dashboard.navigate('wizarduser.html'); - } - }); - + Dashboard.navigate('wizarduser.html'); } }; \ No newline at end of file