-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(feat): Add user role scope #554
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Unchanged files with check annotations Beta
version: module[1].version, | ||
name: module[0].substring(module[0].indexOf('/') + 1), | ||
})); | ||
}, [window.installedModules]); | ||
Check warning on line 12 in packages/esm-version-app/src/hooks/useFrontendModules.tsx
|
||
} |
status: status, | ||
handleProcessReferral, | ||
}); | ||
}, [referralData]); | ||
const handleProcessReferral = useCallback(() => { | ||
processCommunityReferral(referralData.messageId) | ||
.then((res) => { | ||
isLowContrast: true, | ||
}); | ||
}); | ||
}, []); | ||
return ( | ||
<> |
onActionButtonClick: () => {}, | ||
}); | ||
} | ||
}, [expiryDate]); | ||
return null; | ||
}; |
const [switchItem, setSwitcherItem] = useState<SwitcherItem>({ index: 0 }); | ||
const patientEnrollments = useMemo( | ||
() => (isLoading ? [] : enrollments[switchItem?.name || first(switcherHeaders)]), | ||
[enrollments, isLoading, switchItem?.name, switcherHeaders, isValidating], | ||
); | ||
if (isLoading) { |
}) | ||
: launchStartVisitPrompt(); | ||
}, | ||
[currentVisit], | ||
); | ||
const rows = useMemo( | ||
), | ||
}; | ||
}), | ||
[carePrograms, isValidating], | ||
); | ||
const headers = [ |
} finally { | ||
setIsLoading(false); | ||
} | ||
}, [bill, lineItem, onClose, t]); | ||
Check warning on line 74 in packages/esm-billing-app/src/billable-services/bill-manager/modals/refund-bill.modal.tsx
|
||
return ( | ||
<> |
useEffect(() => { | ||
promptBeforeClosing(() => isDirty); | ||
}, [isDirty]); | ||
Check warning on line 63 in packages/esm-billing-app/src/billable-services/bill-manager/workspaces/edit-bill/edit-bill-form.workspace.tsx
|
||
const onSubmit: SubmitHandler<EditBillFormData> = async (formData) => { | ||
const updateBill = createEditBillPayload(lineItem, formData, bill, formData.adjustmentReason); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the gender or here explicitly
M
? should it be empty?