diff --git a/frontend/app/pages/commune/[slug]/index.vue b/frontend/app/pages/commune/[slug]/index.vue index e5985ef..943ba7c 100644 --- a/frontend/app/pages/commune/[slug]/index.vue +++ b/frontend/app/pages/commune/[slug]/index.vue @@ -1032,7 +1032,7 @@ const avgPriceWithAboPath = computed(() => { const pts: string[] = [] for (let i = 1; i < curve.curveVolumes.length; i++) { const v = curve.curveVolumes[i] - if (v < 1) continue + if (v < 30) continue // Approximate bill at volume v: we use trapezoidal integration of marginal price // Simpler: bill ≈ average_marginal_price * v, and average_marginal_price ≈ curvePrice at v // More accurate: use the integral formulas. But for display, we use: