From 6cd8b04bd01f1f9852eff8d056c7fa683a3e34e8 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Tue, 5 Jul 2022 16:53:00 -0700 Subject: [PATCH] Nit: Fix spacing --- common/pseudo-numeric.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pseudo-numeric.ts b/common/pseudo-numeric.ts index 9a322e35..c99e670f 100644 --- a/common/pseudo-numeric.ts +++ b/common/pseudo-numeric.ts @@ -17,7 +17,7 @@ export const getMappedValue = if (isLogScale) { const logValue = p * Math.log10(max - min) - return 10 ** logValue + min + return 10 ** logValue + min } return p * (max - min) + min