Skip to content

Commit

Permalink
chore: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Franqsanz committed Mar 22, 2024
1 parent 0acf1f9 commit df55f2e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
```
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 1 addition & 3 deletions src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: <Layout />,
Expand Down Expand Up @@ -114,5 +114,3 @@ const routes = createBrowserRouter([
],
},
]);

export default routes;

0 comments on commit df55f2e

Please sign in to comment.