From c7e7722988c36cebf9426ba1b30dc59297ce5865 Mon Sep 17 00:00:00 2001 From: Dr-Electron Date: Wed, 8 Nov 2023 17:29:41 +0100 Subject: [PATCH] Format --- src/components/ManaCalculator/hooks/useResultsWithUnit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ManaCalculator/hooks/useResultsWithUnit.ts b/src/components/ManaCalculator/hooks/useResultsWithUnit.ts index 66b52d00dd3..8e170bf2a0a 100644 --- a/src/components/ManaCalculator/hooks/useResultsWithUnit.ts +++ b/src/components/ManaCalculator/hooks/useResultsWithUnit.ts @@ -30,7 +30,7 @@ const getUnit = (value: number): Unit => { let bestUnits: Unit = Unit.default; const checkLength = Math.abs(value).toFixed(0).replace('.', '').length; - console.log(checkLength, value) + console.log(checkLength, value); if (checkLength > UNIT_MAP.M.dp) { bestUnits = Unit.M; } else if (checkLength > UNIT_MAP.K.dp) {