Skip to content

Commit f7acc8c

Browse files
authored
Merge pull request #212 from w3bdesign/development
Add missing currency symbol to checkout page
2 parents 5885e76 + 3a79357 commit f7acc8c

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)