Skip to content

Commit 1e1dbdb

Browse files
committed
update patient queue fetch endpoint
1 parent fc88e60 commit 1e1dbdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/esm-patient-queues-app/src/active-visits/patient-queues.resource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export async function checkCurrentVisit(patientUuid) {
225225
}
226226

227227
export function usePatientQueues(filter: PatientQueueFilter) {
228-
const apiUrl = `${restBaseUrl}/patientqueue${toQueryParams(filter)}`;
228+
const apiUrl = `${restBaseUrl}/patientqueue${toQueryParams(filter)}&onlyInQueueRooms=true&totalCount=true&v=full`;
229229
const { data, error, isLoading } = useSWR<
230230
{
231231
data: PageableResult<PatientQueue>;

0 commit comments

Comments
 (0)