diff --git a/src/App.js b/src/App.js index b6bda2253d5c84dcebce13ac439c6c407cf8f56b..cbb352db085efa1f7b9c061bb6de4b7724670ec6 100644 --- a/src/App.js +++ b/src/App.js @@ -19,7 +19,6 @@ along with Plataforma Integrada MEC. If not, see <http://www.gnu.org/licenses/> import React, { useContext, useEffect } from 'react'; import Home from './Pages/Home'; import Search from './Pages/Search' -import SearchOld from './Pages/SearchOld' import Header from './Components/Header' import EcFooter from './Components/EcFooter'; import GNUAGPLfooter from './Components/AGPLFooter'; @@ -88,7 +87,6 @@ export default function App(){ <Switch> <Route path="/" exact={true} component={Home}/> <Route path="/busca" component={Search} /> - <Route path="/buscaAntiga" component={SearchOld} /> <Route path="/perfil" component={UserPage} /> <Route path="/editarperfil" component={EditProfilePage} /> <Route path="/recurso/:recursoId" component={ResourcePage}/> diff --git a/src/Components/ReportModal.js b/src/Components/ReportModal.js index 540e1de9ae151b92d520e7b8d9105054c069d00b..ceb2631a46a7d0d7c470b9543e9e693c8186661a 100644 --- a/src/Components/ReportModal.js +++ b/src/Components/ReportModal.js @@ -88,19 +88,6 @@ export default function ReportModal (props) { } } - const renderForm = (formType) => { - switch (formType) { - case 'colecao': - return ( - <ReportCollectionForm - handleClose={props.handleClose} - handleSubmit={handleSubmit} - /> - ); - break; - } - } - return ( <StyledModal aria-labelledby="transition-modal-title" @@ -197,4 +184,3 @@ const ReportContainer = styled.div` height : 100%; } ` -