From 5ba2d11cf1d93d75cf621bb58ded43e29dffd43b Mon Sep 17 00:00:00 2001 From: Agustin Vazquez <38046239+9gustin@users.noreply.github.com> Date: Fri, 9 Sep 2022 19:35:38 -0300 Subject: [PATCH] Fix/collections page fixes (#137) * fix: update menu collections path * fix: remove duplicated --- modules/shared/components/Menu/Menu.tsx | 2 +- pages/index.tsx | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/shared/components/Menu/Menu.tsx b/modules/shared/components/Menu/Menu.tsx index f5deaa6..9039814 100644 --- a/modules/shared/components/Menu/Menu.tsx +++ b/modules/shared/components/Menu/Menu.tsx @@ -17,7 +17,7 @@ import Hamburguer from "../Icons/Hamburguer"; import MenuLogo from "../Icons/MenuLogo"; const Links = [ - { title: "Colecciones", href: "/collections" }, + { title: "Colecciones", href: "/" }, { title: "SesiĆ³n de estudio", href: "/study-sessions" }, { title: "Tienda", href: "/Tienda" }, { title: "Perfil", href: "/Perfil" }, diff --git a/pages/index.tsx b/pages/index.tsx index 27d2c28..99e2c98 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -17,10 +17,9 @@ const Home: NextPage & { requiresAuthentication: boolean } = () => {
+
- - ); };