From bab6cb215610686646e5da97a62e6554fd390494 Mon Sep 17 00:00:00 2001 From: DMleadgen Date: Fri, 27 Mar 2026 12:59:19 -0600 Subject: [PATCH] Preserve manual paths from Convex catalog --- lib/convex-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/convex-service.ts b/lib/convex-service.ts index 281ad8f1..62253fba 100644 --- a/lib/convex-service.ts +++ b/lib/convex-service.ts @@ -87,7 +87,7 @@ function mapConvexProduct(product: ConvexProductDoc): Product { function mapConvexManual(manual: ConvexManualDoc): Manual { return { filename: manual.filename, - path: manual.manualUrl || manual.path, + path: manual.path, manufacturer: manual.manufacturer, category: manual.category, size: manual.size,