diff --git a/frontend/benefit/handler/src/components/applicationReview/employeeView/EmployeeActions/EmployeeActions.tsx b/frontend/benefit/handler/src/components/applicationReview/employeeView/EmployeeActions/EmployeeActions.tsx index f2db4a7713..5bcb1eb6b4 100644 --- a/frontend/benefit/handler/src/components/applicationReview/employeeView/EmployeeActions/EmployeeActions.tsx +++ b/frontend/benefit/handler/src/components/applicationReview/employeeView/EmployeeActions/EmployeeActions.tsx @@ -2,12 +2,10 @@ import { ROUTES } from 'benefit/handler/constants'; import { UploadProps } from 'benefit/handler/types/application'; import { ATTACHMENT_TYPES } from 'benefit-shared/constants'; import { Button, IconGlyphEuro, IconPlus } from 'hds-react'; -import noop from 'lodash/noop'; import { useRouter } from 'next/router'; import { useTranslation } from 'next-i18next'; import * as React from 'react'; import UploadAttachment from 'shared/components/attachments/UploadAttachment'; -import { $Checkbox } from 'shared/components/forms/fields/Fields.sc'; import { $Grid, $GridCell, @@ -76,27 +74,6 @@ const EmployeeActions: React.FC = ({ - <$Grid> - <$GridCell - $colSpan={2} - css={` - margin-bottom: ${theme.spacing.s}; - `} - > - <$Checkbox - css={` - input { - background-color: ${theme.colors.white}; - } - `} - id="cb_targetGroupCheck" - name="cb_targetGroupCheck" - label={t(`${translationsBase}.targetGroupCheck`)} - checked={false} - onChange={noop} - /> - - ); }; diff --git a/frontend/benefit/handler/src/components/applicationReview/paySubsidyView/PaySubsidyActions/PaysubsidyActions.tsx b/frontend/benefit/handler/src/components/applicationReview/paySubsidyView/PaySubsidyActions/PaysubsidyActions.tsx index a2ba05e675..d754f40fad 100644 --- a/frontend/benefit/handler/src/components/applicationReview/paySubsidyView/PaySubsidyActions/PaysubsidyActions.tsx +++ b/frontend/benefit/handler/src/components/applicationReview/paySubsidyView/PaySubsidyActions/PaysubsidyActions.tsx @@ -1,11 +1,9 @@ import { UploadProps } from 'benefit/handler/types/application'; import { ATTACHMENT_TYPES } from 'benefit-shared/constants'; import { IconPlus } from 'hds-react'; -import noop from 'lodash/noop'; import { useTranslation } from 'next-i18next'; import * as React from 'react'; import UploadAttachment from 'shared/components/attachments/UploadAttachment'; -import { $Checkbox } from 'shared/components/forms/fields/Fields.sc'; import { $Grid, $GridCell, @@ -56,27 +54,6 @@ const PaySubsidyActions: React.FC = ({ /> - <$Grid> - <$GridCell - $colSpan={12} - css={` - margin-bottom: ${theme.spacing.s}; - `} - > - <$Checkbox - css={` - input { - background-color: ${theme.colors.white}; - } - `} - id="cb_grantedDueInjury" - name="cb_grantedDueInjury" - label={t(`${translationsBase}.grantedDueInjury`)} - checked={false} - onChange={noop} - /> - - ); };