diff --git a/met-web/src/components/survey/building/index.tsx b/met-web/src/components/survey/building/index.tsx index 38bcd3e38..51b0911ba 100644 --- a/met-web/src/components/survey/building/index.tsx +++ b/met-web/src/components/survey/building/index.tsx @@ -283,49 +283,51 @@ const SurveyFormBuilder = () => { - - { - dispatch( - openNotificationModal({ - open: true, - data: { - header: 'Change Survey Type', - subText: [ - { - text: `You will be changing the survey type from ${ - isMultiPage - ? 'multi page to single page' - : 'single page to multi page' - }.`, - }, - { - text: 'You will lose all current progress if you do.', - bold: true, - }, - { - text: 'Do you want to change this survey type?', + + + { + dispatch( + openNotificationModal({ + open: true, + data: { + header: 'Change Survey Type', + subText: [ + { + text: `You will be changing the survey type from ${ + isMultiPage + ? 'multi page to single page' + : 'single page to multi page' + }.`, + }, + { + text: 'You will lose all current progress if you do.', + bold: true, + }, + { + text: 'Do you want to change this survey type?', + }, + ], + handleConfirm: () => { + setFormDefinition({ + display: isMultiPage ? 'form' : 'wizard', + components: [], + }); }, - ], - handleConfirm: () => { - setFormDefinition({ - display: isMultiPage ? 'form' : 'wizard', - components: [], - }); }, - }, - type: 'confirm', - }), - ); - }} - /> - } - label="Multi-page" - /> - + type: 'confirm', + }), + ); + }} + /> + } + label="Multi-page" + /> + + diff --git a/met-web/src/components/survey/create/CreateOptions.tsx b/met-web/src/components/survey/create/CreateOptions.tsx index 2dc5924ce..d5c644b9e 100644 --- a/met-web/src/components/survey/create/CreateOptions.tsx +++ b/met-web/src/components/survey/create/CreateOptions.tsx @@ -103,19 +103,21 @@ export const CreateOptions = () => { - - { - setMultiPageSurvey(!multiPageSurvey); - }} - /> - } - label="Multi-page" - /> - + + + { + setMultiPageSurvey(!multiPageSurvey); + }} + /> + } + label="Multi-page" + /> + + The multi-page option will enable you to add one, or many pages to a survey. It will also create a progress bar. If you want to create a 1-page survey, turn off the multi-page toggle.