From a52e91c53ce3b30993392a532fe80e86b45348bd Mon Sep 17 00:00:00 2001 From: user1823 <92206575+user1823@users.noreply.github.com> Date: Sun, 6 Apr 2025 15:42:33 +0530 Subject: [PATCH] Remove unused import --- ts/routes/graphs/intervals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/routes/graphs/intervals.ts b/ts/routes/graphs/intervals.ts index 0d860355b..ffd41b238 100644 --- a/ts/routes/graphs/intervals.ts +++ b/ts/routes/graphs/intervals.ts @@ -10,7 +10,7 @@ import * as tr from "@generated/ftl"; import { localizedNumber } from "@tslib/i18n"; import { timeSpan } from "@tslib/time"; import type { Bin } from "d3"; -import { bin, extent, interpolateBlues, mean, quantile, scaleLinear, scaleSequential, sum } from "d3"; +import { bin, extent, interpolateBlues, quantile, scaleLinear, scaleSequential, sum } from "d3"; import type { SearchDispatch, TableDatum } from "./graph-helpers"; import { numericMap } from "./graph-helpers";