Skip to content

Commit

Permalink
Merge branch 'main' into providers-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
its-kios09 authored Jan 16, 2025
2 parents b9b9669 + 6882cc1 commit 9512b5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ const ClaimsForm: React.FC<ClaimsFormProps> = ({ bill, selectedLineItems }) => {
</Layer>
);
}

return (
<FormProvider {...form}>
<Form className={styles.form} onSubmit={handleSubmit(onSubmit)}>
Expand Down Expand Up @@ -333,7 +332,7 @@ const ClaimsForm: React.FC<ClaimsFormProps> = ({ bill, selectedLineItems }) => {
invalid={form.formState.errors[field.name]?.message}
invalidText={form.formState.errors[field.name]?.message}
id="diagnoses"
titleText={t('diagnosis', 'Diagnosis')}
titleText={t('finalDiagnosis', 'Final Diagnosis')}
selectedItems={field.value}
label="Choose option"
items={diagnoses.map((r) => r.id)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ const MainMetrics: React.FC<MainMetricsProps> = ({ selectedLineItems, bill }) =>
headerLabel={t('claimsItems', 'Claims Items')}
/>
<MetricsCard
label={t('date', 'Date of Claimed')}
label={t('date', 'Date of Claim')}
value={formatDate(bill.dateCreated)}
headerLabel={t('date', 'Date of Claimed')}
headerLabel={t('date', 'Date of Claim')}
/>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/esm-billing-app/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"createClaimError": "Create Claim error",
"created": "Created",
"creating": "Creating",
"date": "Date of Claimed",
"date": "Date of Claim",
"dateCreated": "Date Created",
"delete": "Delete",
"deleteBill": "Delete Bill",
Expand Down

0 comments on commit 9512b5f

Please sign in to comment.