Skip to content

Commit 2a89b4d

Browse files
committed
fix: remove packaging fee from totalActualAmountCents calculation
1 parent cecc3f3 commit 2a89b4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/service/errandservice/internal/service/buyer_order.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ func buildProductItems(
406406

407407
var actual *int32
408408
if actualTotalsReady {
409-
actualSummary, err := safeInt32FromInt64(actualProductCents + int64(packagingShareCents))
409+
actualSummary, err := safeInt32FromInt64(actualProductCents)
410410
if err != nil {
411411
return nil, 0, nil, 0, err
412412
}

0 commit comments

Comments
 (0)