From af9bf29678e89a0a413b20879777d719ed6c9c86 Mon Sep 17 00:00:00 2001 From: jprcdev Date: Tue, 10 Feb 2026 18:09:46 +0100 Subject: [PATCH] subida de version node --- package.json | 3 +++ src/components/shop/CatalogBrowser.tsx | 1 + 2 files changed, 4 insertions(+) diff --git a/package.json b/package.json index b0341f6..5bd9282 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,9 @@ "name": "surtilatino-frontend-page", "version": "0.1.0", "private": true, + "engines": { + "node": ">=20.9.0" + }, "scripts": { "dev": "next dev", "build": "next build", diff --git a/src/components/shop/CatalogBrowser.tsx b/src/components/shop/CatalogBrowser.tsx index 7949b94..67127ec 100644 --- a/src/components/shop/CatalogBrowser.tsx +++ b/src/components/shop/CatalogBrowser.tsx @@ -8,6 +8,7 @@ import { cn } from "@/lib/utils"; interface CatalogBrowserProps { initialProducts: Product[]; + categories: Category[]; }