fix(product-carousel): correct track variable in thumbnail loop

This commit is contained in:
ncoronel 2026-09-07 09:03:34 -03:00
parent 985316d3b4
commit d8d608c435
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@
<!-- Thumbnails Row -->
@if (images().length > 1) {
<div class="product-carousel__thumbnails">
@for (image of images(); track image; let idx = $index) {
@for (image of images(); track $index; let idx = $index) {
<button
type="button"
class="product-carousel__thumbnail border-0 p-0 overflow-hidden bg-light"