refactor(main): mudando nome da rota segurancaprivacidade para segurancaeprivacidade

This commit is contained in:
Ana Carolina Duarte Cavalcante 2023-01-12 17:42:32 -03:00
parent 16616f8e9c
commit 4740d11e42
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ const Main = () => {
<NavLinkContent to="/formadepagamento" text="Forma de Pagamento"/>
<NavLinkContent to="/entrega" text="Entrega"/>
<NavLinkContent to="/trocaedevolucao" text="Troca e Devolução"/>
<NavLinkContent to="/segurancaprivacidade" text="Segurança e Privacidade"/>
<NavLinkContent to="/segurancaeprivacidade" text="Segurança e Privacidade"/>
<NavLinkContent to="/contato" text="Contato"/>
</ul>
</aside>

View File

@ -13,7 +13,7 @@ const Rotas = () => {
<Route path="/formadepagamento" element={<FormaDePagamento />}></Route>
<Route path="/entrega" element={<Entrega />}></Route>
<Route path="/trocaedevolucao" element={<TrocaEDevolucao />}></Route>
<Route path="/segurancaprivacidade" element={<SegurancaEPrivacidade />}></Route>
<Route path="/segurancaeprivacidade" element={<SegurancaEPrivacidade />}></Route>
<Route path="/contato" element={<Contato />}></Route>
</Routes>
);