Skip to content

Commit

Permalink
fix: Closing p tag placement
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnynotsolucky committed Feb 20, 2025
1 parent 8a044d5 commit 551486d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/_components/app/line-item-cart.twig
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
<div class="mt-3 md:mt-0">
{% set priceDifference = lineItem.total - lineItem.subTotal %}
{% if priceDifference < 0.0 %}
<p class="mt-1 text-sm text-gray-600 line-through"><span>{{ lineItem.subtotalAsCurrency() }}</p></span>
<p class="mt-1 text-sm text-gray-600 line-through"><span>{{ lineItem.subtotalAsCurrency() }}</span></p>
<p
class="font-semibold">{{ lineItem.totalAsCurrency() }}</p>
{% else %}
Expand Down

0 comments on commit 551486d

Please sign in to comment.