complated order

This commit is contained in:
Samandar Turgunboyev
2026-02-04 18:29:55 +05:00
parent 4d22e3441c
commit 2535913eb2
19 changed files with 176 additions and 144 deletions

View File

@@ -175,7 +175,9 @@ const ProductDetail = () => {
height={500}
src={
data?.images?.length
? BASE_URL + data.images[selectedImage]?.image
? data.images[selectedImage]?.image?.includes(BASE_URL)
? data.images[selectedImage]?.image
: BASE_URL + data.images[selectedImage]?.image
: '/placeholder.svg'
}
alt={data?.name || 'logo'}