From 1625ba0f45cbf4379e3c42a13b838221d5daa061 Mon Sep 17 00:00:00 2001 From: Sebastian Espei Date: Mon, 9 Mar 2026 16:45:32 +0100 Subject: [PATCH] Fix es-lint not not used error --- src/js/utils/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/utils/helpers.ts b/src/js/utils/helpers.ts index b5afd5f..0378418 100644 --- a/src/js/utils/helpers.ts +++ b/src/js/utils/helpers.ts @@ -29,7 +29,7 @@ export function getStandardPageName(width: any, height: any) { } export function convertPoints(points: any, unit: any) { - let result = 0; + let result: number; switch (unit) { case 'in': result = points / 72;