diff --git a/sitio/src/routes/ean/[ean]/+page.server.ts b/sitio/src/routes/ean/[ean]/+page.server.ts index 32d0688..cc98182 100644 --- a/sitio/src/routes/ean/[ean]/+page.server.ts +++ b/sitio/src/routes/ean/[ean]/+page.server.ts @@ -9,8 +9,6 @@ export const load: PageServerLoad = async ({ params }) => { .select() .from(precios) .where(eq(precios.ean, params.ean)) - .groupBy(precios.warcRecordId) - .having(max(precios.parserVersion)) .orderBy(precios.fetchedAt); const res = await q; if (res.length === 0) return error(404, "Not Found");