Fix lint errors

This commit is contained in:
Gustav Hansen 2023-02-09 13:32:11 +01:00
parent af4a376f31
commit 5bea0f4c0f

View File

@ -115,23 +115,23 @@ export function ReviewWorkflowsPage() {
</Loader>
)}
<Stages stages={formik.values?.stages} />
</ContentLayout>
</Form>
</FormikProvider>
<Stages stages={formik.values?.stages} />
</ContentLayout>
</Form>
</FormikProvider>
<ConfirmDialog
bodyText={{
id: 'Settings.review-workflows.page.delete.confirm.body',
defaultMessage:
'All entries assigned to deleted stages will be moved to the first stage. Are you sure you want to save this?',
}}
isOpen={isConfirmDeleteDialogOpen}
onToggleDialog={toggleConfirmDeleteDialog}
onConfirm={handleConfirmDeleteDialog}
/>
</Main>
</Layout>
</CheckPagePermissions>
);
<ConfirmDialog
bodyText={{
id: 'Settings.review-workflows.page.delete.confirm.body',
defaultMessage:
'All entries assigned to deleted stages will be moved to the first stage. Are you sure you want to save this?',
}}
isOpen={isConfirmDeleteDialogOpen}
onToggleDialog={toggleConfirmDeleteDialog}
onConfirm={handleConfirmDeleteDialog}
/>
</Main>
</Layout>
</CheckPagePermissions>
);
}