Skip to content

Commit

Permalink
Removed unused imports in users and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
oscgonfer committed Jan 17, 2024
1 parent b5052df commit 7cbb2d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/components/tags/tags.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
];

function tagsController(tag, $scope, device, $state, $q, PreviewDevice,
animation, $timeout, $rootScope) {
animation) {

var vm = this;

Expand All @@ -27,7 +27,7 @@
$state.transitionTo('layout.home.kit');
}

if (device.getWorldMarkers()) {
if (device.getWorldMarkers()) {
// If the user has already loaded a prev page and has markers in mem or localstorage
updateSelectedTags();
} else {
Expand Down
6 changes: 3 additions & 3 deletions src/app/components/userProfile/userProfile.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
.controller('UserProfileController', UserProfileController);

UserProfileController.$inject = ['$scope', '$stateParams', '$location',
'utils', 'user', 'device', 'alert', 'auth', 'userUtils', '$timeout', 'animation',
'user', 'auth', 'userUtils', '$timeout', 'animation',
'NonAuthUser', '$q', 'PreviewDevice'];
function UserProfileController($scope, $stateParams, $location, utils,
user, device, alert, auth, userUtils, $timeout, animation,
function UserProfileController($scope, $stateParams, $location,
user, auth, userUtils, $timeout, animation,
NonAuthUser, $q, PreviewDevice) {

var vm = this;
Expand Down

0 comments on commit 7cbb2d4

Please sign in to comment.