diff --git a/src/applications/simple-forms/form-upload/pages/helpers.jsx b/src/applications/simple-forms/form-upload/pages/helpers.jsx index 24002fff266f..36666e79af70 100644 --- a/src/applications/simple-forms/form-upload/pages/helpers.jsx +++ b/src/applications/simple-forms/form-upload/pages/helpers.jsx @@ -28,13 +28,18 @@ export const CustomTopContent = () => { ); }; +/** @type {CustomPageType} */ export const CustomAlertPage = props => (
{props.alert} <> {props.contentBeforeButtons} - + {props.contentAfterButtons} @@ -45,4 +50,6 @@ CustomAlertPage.propTypes = { alert: PropTypes.element, contentAfterButtons: PropTypes.element, contentBeforeButtons: PropTypes.element, + goBack: PropTypes.func, + onContinue: PropTypes.func, };