Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum committed Jun 26, 2024
1 parent 437eedb commit 713e1e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,6 @@ const LaboratoryOrderReferalResults: React.FC<
[t]
);

console.log("laboratoryOrders" + JSON.stringify(laboratoryOrders, null, 2));

const tableRows = useMemo(() => {
return laboratoryOrders?.map((entry, index) => ({
...entry,
Expand All @@ -291,7 +289,7 @@ const LaboratoryOrderReferalResults: React.FC<
role="tooltip"
key={order?.uuid}
>
{order?.concept?.display ?? "Not"}
{order?.display}
</Tag>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,6 @@ export function usePatientLaboratoryOrders(filter: LaboratoryOrderFilter) {
.filter((item) => item.orders.length > 0)
: [];

console.log("filteredItems-->" + JSON.stringify(filteredItems, null, 2));

return {
items: filteredItems,
isLoading,
Expand Down

0 comments on commit 713e1e2

Please sign in to comment.