fix(lint): fixing test lint

This commit is contained in:
ShaneK
2025-03-06 12:29:45 -08:00
parent e89ce6b57a
commit c3e822ae6d
2 changed files with 2 additions and 2 deletions

View File

@@ -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);
})
});
});
});

View File

@@ -1,4 +1,4 @@
import { isSafeNumber } from "@utils/helpers";
import { isSafeNumber } from '@utils/helpers';
export function getDecimalPlaces(n: number) {
if (!isSafeNumber(n)) return 0;