Skip to content

Commit 3a79357

Browse files
committed
Add missing currency symbol to checkout page
1 parent 52798ff commit 3a79357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Checkout/OrderDetailsCartItem.component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const OrderDetailsCartItem = ({ item }) => {
1414
<td className="px-4 py-2 border">{item.name}</td>
1515

1616
<td className="px-4 py-2 border">
17-
{'string' !== typeof item.price ? item.price.toFixed(2) : item.price}
17+
kr{'string' !== typeof item.price ? item.price.toFixed(2) : item.price}
1818
</td>
1919

2020
<td className="px-4 py-2 border">{item.qty}</td>

0 commit comments

Comments
 (0)