diff --git a/src/pages/BandoEdit/components/BandoEditFormStep3/index.js b/src/pages/BandoEdit/components/BandoEditFormStep3/index.js index 80e1b6f..4c9412e 100644 --- a/src/pages/BandoEdit/components/BandoEditFormStep3/index.js +++ b/src/pages/BandoEdit/components/BandoEditFormStep3/index.js @@ -94,7 +94,7 @@ const BandoEditFormStep3 = forwardRef(function () { const getFormsCallback = (resp) => { if (resp.status === 'SUCCESS') { - const EXCLUDED_TYPES = new Set(['fileupload', 'fileselect', 'table', 'criteria_table', 'spreadsheet']); + const EXCLUDED_TYPES = new Set(['fileupload', 'fileselect', 'spreadsheet']); console.log('resp.data', resp.data) const raw = (resp.data ?? []).flatMap(form => (form.content ?? []) diff --git a/src/pages/BandoEdit/components/BandoEditFormStep3Excel/index.js b/src/pages/BandoEdit/components/BandoEditFormStep3Excel/index.js index e06f777..4f74e6a 100644 --- a/src/pages/BandoEdit/components/BandoEditFormStep3Excel/index.js +++ b/src/pages/BandoEdit/components/BandoEditFormStep3Excel/index.js @@ -108,7 +108,7 @@ const BandoEditFormStep3Excel = forwardRef(function () { const getFormsCallback = (resp) => { if (resp.status === 'SUCCESS') { - const EXCLUDED_TYPES = new Set(['fileupload', 'fileselect', 'table', 'criteria_table']); + const EXCLUDED_TYPES = new Set(['fileupload', 'fileselect']); const raw = (resp.data ?? []).flatMap(form => (form.content ?? []) .filter(f => !EXCLUDED_TYPES.has(f.name))