Skip to content

Commit

Permalink
fix broken unit and e2e tests (#10143)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpathipa authored Feb 5, 2024
1 parent a7c0ec7 commit 210f013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const CheckoutBar = (props: CheckoutBarProps) => {
{children}
{
<StyledCheckoutSection data-qa-total-price>
{price >= 0 || price ? (
{(price >= 0 && !disabled) || price ? (
<DisplayPrice interval="mo" price={price} />
) : (
<Typography>{priceSelectionText}</Typography>
Expand Down

0 comments on commit 210f013

Please sign in to comment.