diff --git a/src/components/forms/NewBook.tsx b/src/components/forms/NewBook.tsx
index 68e553d..f32e51d 100644
--- a/src/components/forms/NewBook.tsx
+++ b/src/components/forms/NewBook.tsx
@@ -151,11 +151,12 @@ export function FormNewBook() {
const file = e.target.files?.[0];
if (!file) return;
- if (file.size > 5000000) {
- // 5 MB
+ // 1 MB
+ if (file.size > 1000000) {
alert(
`El tamaño de la imagen es demasiado grande. Por favor, seleccione una imagen de menor tamaño.`,
);
+
return;
}
@@ -217,7 +218,7 @@ export function FormNewBook() {
- Solo se aceptan formatos PNG, JPG y WebP con un máximo de 5 MB.
+ Solo se aceptan formatos PNG, JPG y WebP con un máximo de 1 MB.
diff --git a/src/data/links.ts b/src/data/links.ts
index 506dc3f..97af527 100644
--- a/src/data/links.ts
+++ b/src/data/links.ts
@@ -82,6 +82,8 @@ const categories: Array = [
{ value: 'Botánica', label: 'Botánica' },
{ value: 'Biografía', label: 'Biografía' },
{ value: 'Ciencia Ficción', label: 'Ciencia Ficción' },
+ { value: 'Crimen', label: 'Crimen' },
+ { value: 'Contemporáneo', label: 'Contemporáneo' },
{ value: 'Clásicos', label: 'Clásicos' },
{ value: 'Cuidado Del Bebé', label: 'Cuidado Del Bebé' },
{ value: 'Comedia', label: 'Comedia' },
@@ -157,6 +159,7 @@ const categories: Array = [
{ value: 'Humor Grafico', label: 'Humor Grafico' },
{ value: 'Thriller', label: 'Thriller' },
{ value: 'Thriller de Detectives', label: 'Thriller de Detectives' },
+ { value: 'Thriller de Espías', label: 'Thriller de Espías' },
];
const format: Array = [