From 54f48682fcba5ad9f25d9943785165e266300712 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier Date: Wed, 24 Jun 2026 18:02:05 +0200 Subject: [PATCH] hotfix(cron): point snapshot-hl-cohort import at @/lib/hl-builder-stats PR #690 cherry-picked the cron route + the helper file but the helper shipped to main at src/lib/hl-builder-stats.ts while the route still imported from the dev-only path @/lib/benches/hyperliquid/builder-stats, which broke every prod build since (Turbopack module-not-found). Aligning the import path with the actual file location on main. --- src/app/api/cron/snapshot-hl-cohort/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/cron/snapshot-hl-cohort/route.ts b/src/app/api/cron/snapshot-hl-cohort/route.ts index 5812df41..a51835bd 100644 --- a/src/app/api/cron/snapshot-hl-cohort/route.ts +++ b/src/app/api/cron/snapshot-hl-cohort/route.ts @@ -3,7 +3,7 @@ import { NextResponse, type NextRequest } from "next/server"; import { fetchHlCohortFresh, fetchHlHip3CohortFresh, -} from "@/lib/benches/hyperliquid/builder-stats"; +} from "@/lib/hl-builder-stats"; import { cohortSnapshotConfigured, writeCohortSnapshot,