Skip to content

Commit

Permalink
rebase: Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
PintoGideon committed Mar 27, 2024
1 parent 1e3ea4a commit ff236d1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/Pacs/components/StudyCard.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { useState, useContext } from "react";
import { Alert } from "antd";
import {
Badge,
Button,
Expand Down Expand Up @@ -53,9 +51,8 @@ const StudyCardCopy = ({ study }: { study: any }) => {
});
}
}
},
fetchNextStatus ? 4000 : null,
);
}
}, [studyPullTracker, pullStudy]);

return (
<>
Expand Down Expand Up @@ -125,7 +122,7 @@ const StudyCardCopy = ({ study }: { study: any }) => {
<div>
{study.NumberOfStudyRelatedSeries.value &&
study.NumberOfStudyRelatedSeries.value}{" "}
series, {formattedDate}
series, {`${formatStudyDate(study.StudyDate.value)}`}
</div>
</div>
<div className="flex-studies-item ">
Expand Down

0 comments on commit ff236d1

Please sign in to comment.