Skip to content

Commit

Permalink
Remove the accession number from the status request to pfdcm
Browse files Browse the repository at this point in the history
  • Loading branch information
PintoGideon committed Feb 27, 2024
1 parent a4f0af0 commit ac5f9f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/Pacs/components/SeriesCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ const SeriesCard = ({ series }: { series: any }) => {
return {
SeriesInstanceUID: SeriesInstanceUID.value,
StudyInstanceUID: StudyInstanceUID.value,
AccessionNumber: AccessionNumber.value,
};
}, [AccessionNumber.value, SeriesInstanceUID.value, StudyInstanceUID.value]);
}, [SeriesInstanceUID.value, StudyInstanceUID.value]);

const fetchCubeFilePreview = useCallback(
async function fetchCubeSeries() {
Expand Down
1 change: 0 additions & 1 deletion src/components/Pacs/pfdcmClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export interface ImageStatusType {
export interface DataFetchQuery {
SeriesInstanceUID: string;
StudyInstanceUID: string;
AccessionNumber: string;
}

class PfdcmClient {
Expand Down

0 comments on commit ac5f9f3

Please sign in to comment.