Skip to content

Commit

Permalink
fix: wrong parameter passed in API (openMF#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramvr1256 authored Jul 26, 2022
1 parent ed1395b commit c2e959e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/organization/organization.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class OrganizationService {
getOfficerTemplate(officerId: string, officeId: string): Observable<any> {
const httpParams = new HttpParams()
.set('fromLoanOfficerId', officerId.toString())
.set('officeId', officerId.toString());
.set('officeId', officeId.toString());
return this.http.get('/loans/loanreassignment/template', { params: httpParams });
}

Expand Down

0 comments on commit c2e959e

Please sign in to comment.