Disable scrolling to the top when switching between variants with arrow

This commit is contained in:
Emir Morgan 2023-08-02 22:45:00 +03:00 committed by GitHub
parent 0f700e2d07
commit 5a9535f3d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,11 +47,17 @@ export function Gallery({ images }: { images: { src: string; altText: string }[]
aria-label="Previous product image"
href={previousUrl}
className={buttonClassName}
scroll={false}
>
<ArrowLeftIcon className="h-5" />
</Link>
<div className="mx-1 h-6 w-px bg-neutral-500"></div>
<Link aria-label="Next product image" href={nextUrl} className={buttonClassName}>
<Link
aria-label="Next product image"
href={nextUrl}
className={buttonClassName}
scroll={false}
>
<ArrowRightIcon className="h-5" />
</Link>
</div>