Skip to content

Commit

Permalink
Remove parsing number to string on cart price
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrsKondratjevs committed Sep 29, 2022
1 parent 867035f commit d4df18f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export class CartItem extends PureComponent<CartItemComponentProps> {

return (
<CartItemPrice
row_total={ Number(row_total || 0).toFixed(2) }
row_total={ row_total }
row_total_incl_tax={ row_total_incl_tax }
currency_code={ currency_code }
mix={ {
Expand Down

0 comments on commit d4df18f

Please sign in to comment.