Fix typo when fetching groups

This commit is contained in:
Girish Ramakrishnan
2019-05-05 07:40:11 -07:00
parent 0a9947dbb9
commit 8317972078
+1 -1
View File
@@ -422,7 +422,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
Client.getGroups(function (error, groups) {
if (error) {
console.error(error);
return $timeout(fetchUsers, 5000);
return $timeout(fetchGroups, 5000);
}
$scope.groups = groups;