fix: remove dead code
This commit is contained in:
parent
deeb604e22
commit
de5f7580a6
|
|
@ -25,12 +25,6 @@ export const PLAN_LABELS: Record<string, string> = {
|
||||||
free: "Free", pro: "Pro", pro2x: "Pro 2x", pro4x: "Pro 4x", lifetime: "Lifetime",
|
free: "Free", pro: "Pro", pro2x: "Pro 2x", pro4x: "Pro 4x", lifetime: "Lifetime",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const PRO_MULTIPLIERS = [
|
|
||||||
{ plan: "pro", label: "1x", monitors: 200, interval: "5s", priceMultiplier: 1 },
|
|
||||||
{ plan: "pro2x", label: "2x", monitors: 400, interval: "5s", priceMultiplier: 2 },
|
|
||||||
{ plan: "pro4x", label: "4x", monitors: 800, interval: "5s", priceMultiplier: 4 },
|
|
||||||
];
|
|
||||||
|
|
||||||
// ── Pricing ───────────────────────────────────────────────────────
|
// ── Pricing ───────────────────────────────────────────────────────
|
||||||
export const PRO_MONTHLY_USD = 12;
|
export const PRO_MONTHLY_USD = 12;
|
||||||
export const LIFETIME_USD = 140;
|
export const LIFETIME_USD = 140;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import { Eta } from "eta";
|
||||||
import { resolve } from "path";
|
import { resolve } from "path";
|
||||||
import { resolveKey } from "./auth";
|
import { resolveKey } from "./auth";
|
||||||
import sql from "../db";
|
import sql from "../db";
|
||||||
import { sparkline, sparklineFromPings, pickBestRegion } from "../utils/sparkline";
|
import { sparklineFromPings, pickBestRegion } from "../utils/sparkline";
|
||||||
import { createHash } from "crypto";
|
import { createHash } from "crypto";
|
||||||
import { PLAN_LABELS, REGION_COLORS, REGION_LABELS, REGIONS } from "../../../shared/plans";
|
import { PLAN_LABELS, REGION_COLORS, REGION_LABELS, REGIONS } from "../../../shared/plans";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue