From df55f2e148a7a9e6d473e95d1a4f9bd77c2f7da1 Mon Sep 17 00:00:00 2001 From: franco sanchez Date: Fri, 22 Mar 2024 14:07:58 -0300 Subject: [PATCH] chore: minor changes --- README.md | 16 ++-------------- src/main.tsx | 2 +- src/routes.tsx | 4 +--- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 981f5e6..a580351 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,10 @@ XBuniverse es un sitio web dedicado a los amantes de la lectura y la literatura. ## Contribuir -1. Bifurcar y clonar el repositorio: +1. Clonar el repositorio: ```sh -git clone https://github.com/username/xbu.git +git clone https://github.com/Franqsanz/xbu.git ``` 2. Acceder a la carpeta: @@ -45,15 +45,3 @@ npm install npm run dev ``` - -4. Crea una nueva rama para trabajar en lo que tienes pensado o resolver algún issues: - -```sh -git checkout -b mi-nueva-rama -``` - -5. Subir los cambios a tu bifurcación: - -```sh -git push origin mi-nueva-rama -``` diff --git a/src/main.tsx b/src/main.tsx index 85d9317..b010299 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -8,7 +8,7 @@ import * as Sentry from '@sentry/react'; import { HelmetProvider } from 'react-helmet-async'; import theme from '../theme'; -import routes from './routes'; +import { routes } from './routes'; import { AuthProvider } from '@contexts/AuthContext'; const queryClient = new QueryClient(); diff --git a/src/routes.tsx b/src/routes.tsx index e8f19be..99911f4 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -21,7 +21,7 @@ const Search = lazy(() => import('@pages/Search')); const NewBook = lazy(() => import('@pages/NewBook')); // const Profile = lazy(() => import('@pages/profile/Profile')); -const routes = createBrowserRouter([ +export const routes = createBrowserRouter([ { path: '/', element: , @@ -114,5 +114,3 @@ const routes = createBrowserRouter([ ], }, ]); - -export default routes;