Skip to content

Commit 90c0310

Browse files
thtauhidnihal467
andauthored
Renamed "Verified By" to "Treating Physician" (ohcnetwork#6300)
Co-authored-by: Mohammed Nihal <[email protected]>
1 parent 8946529 commit 90c0310

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Components/Facility/ConsultationDetails/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ export const ConsultationDetails = (props: any) => {
402402
consultationData.deprecated_verified_by) && (
403403
<div className="mt-2 text-sm">
404404
<span className="font-semibold leading-relaxed">
405-
Verified By:{" "}
405+
Treating Physician:{" "}
406406
</span>
407407
{consultationData.verified_by_object
408408
? `${consultationData.verified_by_object.first_name} ${consultationData.verified_by_object.last_name}`

src/Components/Facility/ConsultationForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ export const ConsultationForm = (props: any) => {
539539

540540
case "verified_by": {
541541
if (state.form.suggestion !== "DD" && !state.form[field]) {
542-
errors[field] = "Please fill verified by";
542+
errors[field] = "Please fill treating physician";
543543
invalidForm = true;
544544
break;
545545
}
@@ -1321,7 +1321,7 @@ export const ConsultationForm = (props: any) => {
13211321
>
13221322
<UserAutocompleteFormField
13231323
name={"verified_by"}
1324-
label="Verified by"
1324+
label="Treating Physician"
13251325
placeholder="Attending Doctors Name and Designation"
13261326
required
13271327
value={state.form.verified_by_object ?? undefined}

0 commit comments

Comments
 (0)