From 6123b76c5401bd207890aa3e59e441b7307a15a9 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Mon, 9 Oct 2023 13:49:32 +0100 Subject: [PATCH] rm unused `round` --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index aa04223098..35e428b772 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -8,7 +8,7 @@ export * from './renderMeasuringCells'; export * from './selectedCellUtils'; export * from './styleUtils'; -export const { min, max, round, floor, sign, abs } = Math; +export const { min, max, floor, sign, abs } = Math; export function assertIsValidKeyGetter( keyGetter: unknown