Skip to content

Commit

Permalink
fix : rename list component (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum authored Sep 11, 2023
1 parent 0b9e3de commit 1563b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/queue-list/laboratory-queue.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useEffect, useState } from "react";
import { Tab, Tabs, TabList, TabPanels, Search } from "@carbon/react";
import { useTranslation } from "react-i18next";
import styles from "./laboratory-queue.scss";
import RadiologyPatientList from "./laboratory-patient-list.component";
import LaboratoryPatientList from "./laboratory-patient-list.component";

enum TabTypes {
STARRED,
Expand Down Expand Up @@ -99,7 +99,7 @@ const LaboratoryQueueList: React.FC = () => {
<TabPanels>
{tabs.map((tab, index) => {
return (
<RadiologyPatientList
<LaboratoryPatientList
location={location}
searchTerm={searchTerm}
status={tab.status}
Expand Down

0 comments on commit 1563b5e

Please sign in to comment.