diff --git a/manager/components/PreMatricula.tsx b/manager/components/PreMatricula.tsx index ee54fcc..c824477 100644 --- a/manager/components/PreMatricula.tsx +++ b/manager/components/PreMatricula.tsx @@ -54,6 +54,8 @@ const PreMatricula: React.FC = ({ data, onConvert }) => { const [showNewField, setShowNewField] = useState(false); const [newField, setNewField] = useState({ label: '', tipo: 'text', placeholder: '', obrigatorio: false, opcoes: '' }); const [uploadProgress, setUploadProgress] = useState(null); + const [newBannerProgress, setNewBannerProgress] = useState(null); + const [editBannerProgress, setEditBannerProgress] = useState(null); const [showMassModal, setShowMassModal] = useState(false); const [targetType, setTargetType] = useState('todos'); @@ -672,6 +674,20 @@ const PreMatricula: React.FC = ({ data, onConvert }) => { + ) : newBannerProgress !== null ? ( +
+ +
+

Enviando e compactando folder...

+

{newBannerProgress}% concluído

+
+
+
+
+
) : (