value.toFixed(2) method is multiplying result by 2 rather than returning result with 2 digits after a point code example
Example: rounding number to x decimals javascript
let num = 12.5452411;
num = num.toFixed(3); // 12.545
let num = 12.5452411;
num = num.toFixed(3); // 12.545