diff --git a/src/PowderCoating.Web/wwwroot/js/catalog-price-check.js b/src/PowderCoating.Web/wwwroot/js/catalog-price-check.js index 5cee057..47cc98f 100644 --- a/src/PowderCoating.Web/wwwroot/js/catalog-price-check.js +++ b/src/PowderCoating.Web/wwwroot/js/catalog-price-check.js @@ -11,10 +11,10 @@ if (!form || !btn || !overlay) return; // Estimate total seconds based on item count. - // Haiku sequential: 1 batch at a time, ~22s each (API time + 20s pacing gap). + // Haiku sequential: 1 batch at a time, ~27s each (API time + 20s pacing gap). function estimateDuration(itemCount) { var batches = Math.max(1, Math.ceil(itemCount / 25)); - return Math.max(30, batches * 22); + return Math.max(30, batches * 27); } // Messages keyed to approximate progress milestones (0–100).