diff --git a/frontend/benefit/handler/src/components/applicationReview/actions/handlingApplicationActions/HandlingApplicationActions.tsx b/frontend/benefit/handler/src/components/applicationReview/actions/handlingApplicationActions/HandlingApplicationActions.tsx index 964edece1d..adfc291336 100644 --- a/frontend/benefit/handler/src/components/applicationReview/actions/handlingApplicationActions/HandlingApplicationActions.tsx +++ b/frontend/benefit/handler/src/components/applicationReview/actions/handlingApplicationActions/HandlingApplicationActions.tsx @@ -63,18 +63,21 @@ const HandlingApplicationActions: React.FC = ({ }` )} - {(application.status === APPLICATION_STATUSES.ACCEPTED || - application.status === APPLICATION_STATUSES.REJECTED) && ( - - )} + {[ + APPLICATION_STATUSES.ACCEPTED, + APPLICATION_STATUSES.REJECTED, + ].includes(application.status) && + !application.batch && + !application.archived && ( + + )} - {application.status !== APPLICATION_STATUSES.CANCELLED && ( - <$Column> - - - )} + {application.status !== APPLICATION_STATUSES.CANCELLED && + !application.batch && + !application.archived && ( + <$Column> + + + )} {isConfirmationModalOpen && (