Skip to content

Commit

Permalink
Remove extraneous/obsolete quotation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
ecartz committed Oct 5, 2021
1 parent 0cafa30 commit 8e364f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -7,7 +7,7 @@
$product = new Product($card_product);
?>
<div class="col mb-2">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>>
<?php include $GLOBALS['Template']->map('product_card.php', 'component'); ?>
</div>
</div>
Expand Down
Expand Up @@ -7,7 +7,7 @@
$product = new Product($card_product);
?>
<div class="col mb-2">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>>
<?php include $GLOBALS['Template']->map('product_card.php', 'component'); ?>
</div>
</div>
Expand Down
Expand Up @@ -11,7 +11,7 @@
$product = new Product($also_purchased);
?>
<div class="col mb-2">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>">
<div class="card h-100 is-product" <?= $product->get('data_attributes') ?>>
<?php include $GLOBALS['Template']->map('product_card.php', 'component'); ?>
</div>
</div>
Expand Down

0 comments on commit 8e364f9

Please sign in to comment.