From 538416c22a6ee528fd9fbecea15578c03bcf9b58 Mon Sep 17 00:00:00 2001 From: Thad Miller Date: Thu, 26 Feb 2026 20:44:10 -0500 Subject: [PATCH] [bugfix] fixed lowestPrice and highestPrice field names in sync-prices --- scripts/sync-prices.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sync-prices.ts b/scripts/sync-prices.ts index fad6e63..3fb17db 100644 --- a/scripts/sync-prices.ts +++ b/scripts/sync-prices.ts @@ -53,8 +53,8 @@ async function syncPrices() { await db.update(skus) .set({ marketPrice: sku.marketPrice, - lowestPrice: sku.lowPrice, - highestPrice: sku.highPrice, + lowestPrice: sku.lowestPrice, + highestPrice: sku.highestPrice, priceCount: sku.priceCount, calculatedAt: sku.calculatedAt ? new Date(sku.calculatedAt) : null, })