Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak committed Nov 13, 2024
1 parent e1bd38c commit 1cabe0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Loading from "@/components/Common/Loading";
import PageTitle from "@/components/Common/PageTitle";
import Pagination from "@/components/Common/Pagination";
import { ConsultationTabProps } from "@/components/Facility/ConsultationDetails/index";
import LogUpdateAnalayseTable from "@/components/Facility/Consultations/LogUpdateAnalayseTable";
import LogUpdateAnalyseTable from "@/components/Facility/Consultations/LogUpdateAnalyseTable";
import {
NursingPlotFields,
NursingPlotRes,
Expand Down Expand Up @@ -158,7 +158,7 @@ const NursingPlot = ({ consultationId }: ConsultationTabProps) => {
</div>
</div>
) : (
<LogUpdateAnalayseTable data={tableData} rows={rows} />
<LogUpdateAnalyseTable data={tableData} rows={rows} />
)}
</div>

Expand Down Expand Up @@ -220,7 +220,7 @@ const RoutineSection = ({ consultationId }: ConsultationTabProps) => {

return (
<div className="pb-8 pt-4">
<LogUpdateAnalayseTable
<LogUpdateAnalyseTable
data={results}
rows={ROUTINE_ROWS}
choices={REVERSE_CHOICES}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface SharedSectionTableProps {
choices?: Record<string, Record<string | number, string>>;
}

const LogUpdateAnalayseTable: React.FC<SharedSectionTableProps> = ({
const LogUpdateAnalyseTable: React.FC<SharedSectionTableProps> = ({
data,
rows,
choices = {},
Expand Down Expand Up @@ -90,4 +90,4 @@ const LogUpdateAnalayseTable: React.FC<SharedSectionTableProps> = ({
);
};

export default LogUpdateAnalayseTable;
export default LogUpdateAnalyseTable;

0 comments on commit 1cabe0a

Please sign in to comment.