Skip to content

Commit

Permalink
(refactor) Remove api limit on bill history
Browse files Browse the repository at this point in the history
  • Loading branch information
CynthiaKamau committed Mar 28, 2024
1 parent ef5a658 commit 15370c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/billing.resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import sortBy from 'lodash-es/sortBy';
import { apiBasePath } from './constants';

export const useBills = (patientUuid: string = '', billStatus: string = '') => {
const url = `${apiBasePath}bill?v=full&limit=100`;
const url = `${apiBasePath}bill?v=full`;

const { data, error, isLoading, isValidating, mutate } = useSWR<{ data: { results: Array<PatientInvoice> } }>(
url,
Expand Down

0 comments on commit 15370c2

Please sign in to comment.