next-learn icon indicating copy to clipboard operation
next-learn copied to clipboard

Chapter 12 actions.ts Rounding

Open ja-martinez opened this issue 1 year ago • 0 comments

The createInvoice() and updateInvoice() actions in actions.ts convert the dollar amount to cents, but the result should be rounded because of floating point error.

const amountInCents = Math.round(amount * 100);

ja-martinez avatar Feb 05 '25 19:02 ja-martinez