Skip to content

Commit

Permalink
fix: Remove dollar sign from rest of prices
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpistilli committed Nov 25, 2024
1 parent 904f53a commit 40f65ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basket.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ func basketList(r *Response) {

basketPrice := KVField{
XMLName: xml.Name{Local: "basketPrice"},
Value: fmt.Sprintf("$%.2f", items.BasketPrice),
Value: items.BasketPrice,
}

chargePrice := KVField{
XMLName: xml.Name{Local: "chargePrice"},
Value: fmt.Sprintf("$%.2f", items.ChargePrice),
Value: items.ChargePrice,
}

totalPrice := KVField{
Expand Down

0 comments on commit 40f65ca

Please sign in to comment.