Remove console.log

This commit is contained in:
Sam Becker 2024-04-12 12:23:29 -05:00
parent ff2bbc4821
commit ff5b9dfa82

View File

@ -73,7 +73,6 @@ export const formatNumberToFraction = (number: number) => {
: fraction ? '' : '0';
return `${sign}${integerString}${fraction}`;
} else {
// console.log({ fraction });
const decimalFormatted = decimal.toPrecision(2).replace(/^-*0+/, '');
return `${sign}${integer}${decimalFormatted}`;
}