Skip to content

Commit

Permalink
Receivable types: increase response limit to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
NC-jsAhonen committed Oct 10, 2024
1 parent 22e3f22 commit a0c2b34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/leaseCreateCharge/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export const fetchReceivableTypes = (): Generator<any, any, any> => {
const lease = getCurrentLease(state);
const serviceUnit = lease.service_unit;
return callApi(new Request(createUrl(`receivable_type/`, {
service_unit: serviceUnit.id
service_unit: serviceUnit.id,
limit: 50
}), {
method: 'GET'
}));
Expand Down

0 comments on commit a0c2b34

Please sign in to comment.