Skip to content

Commit

Permalink
[FIX]PRMDR-409: remove delete file link from more actions dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelHowellNHS authored Nov 2, 2023
1 parent c0fee42 commit b0ba6a0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ describe('LloydGeorgeRecordDetails', () => {
{ label: 'See all files', expectedStage: LG_RECORD_STAGE.SEE_ALL },
{ label: 'Download all files', expectedStage: LG_RECORD_STAGE.DOWNLOAD_ALL },
{ label: 'Delete all files', expectedStage: LG_RECORD_STAGE.DELETE_ALL },
{ label: 'Delete file', expectedStage: LG_RECORD_STAGE.DELETE_ONE },
];

beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ function LloydGeorgeRecordDetails({
key: 'delete-all-files-link',
handler: () => setStage(LG_RECORD_STAGE.DELETE_ALL),
},
{
label: 'Delete file',
key: 'delete-one-file-link',
handler: () => setStage(LG_RECORD_STAGE.DELETE_ONE),
},
];

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export enum LG_RECORD_STAGE {
DOWNLOAD_ALL = 1,
SEE_ALL = 2,
DELETE_ALL = 3,
DELETE_ONE = 4,
}
function LloydGeorgeRecordPage() {
const [patientDetails] = usePatientDetailsContext();
Expand Down

0 comments on commit b0ba6a0

Please sign in to comment.