Skip to content

Commit

Permalink
Put status into correct order inside query
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlipovka committed Dec 10, 2024
1 parent efb4628 commit 3ac831f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export const ChooseDocumentToCreateModal = (props: Props) => {
await getFHIRResources<Questionnaire>('Questionnaire', {
'subject-type': subjectType ? [subjectType] : [],
_sort: 'title',
...(context ? { context } : {}),
status: 'active',
...(context ? { context } : {}),
}),
(bundle) => extractBundleResources(bundle).Questionnaire,
),
Expand Down

0 comments on commit 3ac831f

Please sign in to comment.