Skip to content
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

Issue 8422 #8443

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ REACT_PUBLIC_URL=https://care.ohc.network
ESLINT_NO_DEV_ERRORS=true

CARE_CDN_URL="https://egov-s3-facility-10bedicu.s3.amazonaws.com https://egov-s3-patient-data-10bedicu.s3.amazonaws.com http://localhost:4566"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useState } from "react";
import { PrescriptionDropdown } from "./PrescriptionDropdown";
import CareIcon from "../../../CAREUI/icons/CareIcon";
import { useTranslation } from "react-i18next";

export type ProcedureType = {
procedure?: string;
Expand Down Expand Up @@ -33,6 +34,7 @@ export default function ProcedureBuilder(props: Props<ProcedureType>) {
procedures.map((procedure, index) => (index === i ? object : procedure)),
);
};
const { t } = useTranslation();

return (
<div className="mt-2">
Expand Down Expand Up @@ -64,7 +66,7 @@ export default function ProcedureBuilder(props: Props<ProcedureType>) {
</button>
</div>
<div className="w-full">
Procedure
{t("Procedure Suggestions")}
Adiflickzzz marked this conversation as resolved.
Show resolved Hide resolved
<span className="text-danger-500">{" *"}</span>
<input
id="procedure-name"
Expand Down
Loading