diff --git a/client/claim/src/development/index.js b/client/claim/src/development/index.js index 6253e6b5a..0ddb3f761 100644 --- a/client/claim/src/development/index.js +++ b/client/claim/src/development/index.js @@ -2,12 +2,9 @@ import ngModule from '../module'; import './style.scss'; class Controller { - constructor($state, $scope, $http, $translate, vnApp) { + constructor($state, $scope) { this.$state = $state; this.$ = $scope; - this.$http = $http; - this.$translate = $translate; - this.vnApp = vnApp; } onSubmit() { @@ -19,7 +16,7 @@ class Controller { } } -Controller.$inject = ['$state', '$scope', '$http', '$translate', 'vnApp']; +Controller.$inject = ['$state', '$scope']; ngModule.component('vnClaimDevelopment', { template: require('./index.html'),