Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 7ff7574

Browse files
committed
Fix for invalid request issue.
1 parent 9540972 commit 7ff7574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/front/src/app/add-copilot-payment/add-copilot-payment-controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ angular.module('topcoderX')
2424

2525
// get topcoderx projects
2626
$scope.getProjects = function () {
27-
ProjectService.getProjects().then(function (response) {
27+
ProjectService.getProjects('active', false).then(function (response) {
2828
$scope.projects = response.data;
2929
}).catch(function (error) {
3030
_handleError(error, 'There are no projects in Topcoder-X. Please create a project first.');

0 commit comments

Comments
 (0)