Skip to content

Commit 88d4b1e

Browse files
committed
fix(website): extend calculator sliders to reach Scale plan
Extend write stops to 5B and retention stops to 25K GB so the pricing calculator can recommend the Scale plan at higher usage. Made-with: Cursor
1 parent d5b4ff2 commit 88d4b1e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

website/src/components/pricing/PricingCalculator.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ onMounted(() => {
2525
const WRITE_STOPS = [
2626
0, 100_000, 500_000, 1_000_000, 2_000_000, 5_000_000, 10_000_000, 25_000_000,
2727
50_000_000, 100_000_000, 250_000_000, 500_000_000, 1_000_000_000,
28+
2_000_000_000, 5_000_000_000,
2829
]
2930
const RETENTION_STOPS = [
30-
0, 1, 5, 10, 25, 50, 100, 250, 500, 1_000, 2_500, 5_000,
31+
0, 1, 5, 10, 25, 50, 100, 250, 500, 1_000, 2_500, 5_000, 10_000, 25_000,
3132
]
3233
const SLIDER_MAX = 1000
3334

0 commit comments

Comments
 (0)