We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 85f290d + 939d9a9 commit 6b8b5a9Copy full SHA for 6b8b5a9
1 file changed
src/features/products/components/ProductGrid/ProductCard.tsx
@@ -8,7 +8,7 @@ const ProductCard: React.FC<{ product: Product }> = ({ product }) => {
8
const handleBuyNow = () => {
9
if (isComingSoon || isOutOfStock) return;
10
const message = encodeURIComponent(`Hi ZAYQ! I'm interested in the ${product.name} (₹${product.price}). Is it in stock?`);
11
- window.open(`https://wa.me/91XXXXXXXXXX?text=${message}`, '_blank'); // Replace with your WhatsApp number
+ window.open(`https://wa.me/917306912910?text=${message}`, '_blank'); // Replace with your WhatsApp number
12
};
13
14
return (
@@ -67,4 +67,4 @@ const ProductCard: React.FC<{ product: Product }> = ({ product }) => {
67
);
68
69
70
-export default ProductCard;
+export default ProductCard;
0 commit comments