From 0f1d9a8743da7a4f7220990e4a2fdc1542c968bd Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Wed, 30 Sep 2015 11:09:09 -0400 Subject: [PATCH] removing resolve on /login route --- awx/ui/client/src/login/login.route.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/awx/ui/client/src/login/login.route.js b/awx/ui/client/src/login/login.route.js index b290adfcfe..9f0bd8766b 100644 --- a/awx/ui/client/src/login/login.route.js +++ b/awx/ui/client/src/login/login.route.js @@ -9,10 +9,5 @@ import {templateUrl} from '../shared/template-url/template-url.factory'; export default { name: 'signIn', route: '/login', - templateUrl: templateUrl('login/loginBackDrop'), - resolve: { - features: ['FeaturesService', function(FeaturesService) { - return FeaturesService.get(); - }] - } + templateUrl: templateUrl('login/loginBackDrop') };