Skip to content

Commit

Permalink
fixed doctor calling button size and added types (ohcnetwork#9130)
Browse files Browse the repository at this point in the history
  • Loading branch information
nithish1018 authored and UdaySagar-Git committed Dec 3, 2024
1 parent 0113fef commit f781f8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,7 @@
"no_log_update_delta": "No changes since previous log update",
"no_log_updates": "No log updates found",
"no_notices_for_you": "No notices for you.",
"no_patients_found": "No Patients Found",
"no_patients_to_show": "No patients to show.",
"no_policy_added": "No Insurance Policy Added",
"no_policy_found": "No Insurance Policy Found for this Patient",
Expand Down
7 changes: 4 additions & 3 deletions src/components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ export const PatientManager = () => {
);

const LastAdmittedToTypeBadges = () => {
const badge = (key: string, value: any, id: string) => {
const badge = (key: string, value: string | undefined, id: string) => {
return (
value && (
<FilterBadge
Expand Down Expand Up @@ -421,7 +421,7 @@ export const PatientManager = () => {
};

const HasConsentTypesBadges = () => {
const badge = (key: string, value: any, id: string) => {
const badge = (key: string, value: string | undefined, id: string) => {
return (
value && (
<FilterBadge
Expand Down Expand Up @@ -773,7 +773,7 @@ export const PatientManager = () => {
managePatients = (
<div className="col-span-3 w-full rounded-lg bg-white p-2 py-8 pt-4 text-center">
<p className="text-2xl font-bold text-secondary-600">
No Patients Found
{t("no_patients_found")}
</p>
</div>
);
Expand Down Expand Up @@ -875,6 +875,7 @@ export const PatientManager = () => {
/>
{!!params.facility && (
<ButtonV2
className="w-full lg:w-fit"
id="doctor-connect-patient-button"
onClick={() => {
triggerGoal("Doctor Connect Clicked", {
Expand Down

0 comments on commit f781f8b

Please sign in to comment.