Nit: Fix spacing

This commit is contained in:
Austin Chen 2022-07-05 16:53:00 -07:00
parent b71944607b
commit 6cd8b04bd0

View File

@ -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