From 07937f3ca670e9fd2518112fc8735cfe3c016865 Mon Sep 17 00:00:00 2001 From: Vini Date: Sun, 2 Jun 2024 18:41:51 +0200 Subject: [PATCH] Fix alt text --- app/javascript/StorefrontApp/features/product/Item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/StorefrontApp/features/product/Item.tsx b/app/javascript/StorefrontApp/features/product/Item.tsx index b2e1e83..585c442 100644 --- a/app/javascript/StorefrontApp/features/product/Item.tsx +++ b/app/javascript/StorefrontApp/features/product/Item.tsx @@ -40,7 +40,7 @@ const Item = ({ item, disabled = false, handleItemClick }: ItemProps) => { }} component="img" image={item.image} - alt={`Product ${item.image}`} + alt={`${item.name} product image`} />