From c3e822ae6d28fa000516e396e9d6bf03935cbf93 Mon Sep 17 00:00:00 2001 From: ShaneK Date: Thu, 6 Mar 2025 12:29:45 -0800 Subject: [PATCH] fix(lint): fixing test lint --- core/src/utils/floating-point/floating-point.spec.ts | 2 +- core/src/utils/floating-point/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/utils/floating-point/floating-point.spec.ts b/core/src/utils/floating-point/floating-point.spec.ts index d52fbd0f9c..d985699ba7 100644 --- a/core/src/utils/floating-point/floating-point.spec.ts +++ b/core/src/utils/floating-point/floating-point.spec.ts @@ -29,6 +29,6 @@ describe('floating point utils', () => { expect(roundToMaxDecimalPlaces(undefined as any)).toBe(0); expect(roundToMaxDecimalPlaces(null as any)).toBe(0); expect(roundToMaxDecimalPlaces(NaN as any)).toBe(0); - }) + }); }); }); diff --git a/core/src/utils/floating-point/index.ts b/core/src/utils/floating-point/index.ts index 1ece5510c8..6f94b80129 100644 --- a/core/src/utils/floating-point/index.ts +++ b/core/src/utils/floating-point/index.ts @@ -1,4 +1,4 @@ -import { isSafeNumber } from "@utils/helpers"; +import { isSafeNumber } from '@utils/helpers'; export function getDecimalPlaces(n: number) { if (!isSafeNumber(n)) return 0;