From 70bc839f48607b4b22cce3db3af932814bc8e2ac Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 2 Aug 2026 07:17:14 +0000 Subject: [PATCH] Restore reserved low-stock line, clearer notify-me placeholder text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NotifyMeForm's single-row redesign matched AddToCartInlineButton's button height exactly, which made the sold-out card's earlier low-stock-line omission overcorrect — it ended up shorter than its siblings instead of taller. Keeping that line unconditional (like every other card) is what actually lines them up. Also swapped the generic "E-Mail-Adresse" placeholder for one that states the purpose. Co-Authored-By: Claude Sonnet 5 --- app/components/NotifyMeForm.tsx | 4 ++-- app/components/ProductCard.tsx | 23 +++++++++++------------ 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/app/components/NotifyMeForm.tsx b/app/components/NotifyMeForm.tsx index 8bcbad7..78ef7d2 100644 --- a/app/components/NotifyMeForm.tsx +++ b/app/components/NotifyMeForm.tsx @@ -67,8 +67,8 @@ export function NotifyMeForm({ productId, variantName = "" }: { productId: numbe type="email" value={email} onChange={(e) => setEmail(e.target.value)} - placeholder="E-Mail-Adresse" - aria-label="E-Mail-Adresse für Verfügbarkeits-Info" + placeholder="Bei Verfügbarkeit benachrichtigen" + aria-label="E-Mail-Adresse für Benachrichtigung, sobald das Produkt wieder verfügbar ist" className="w-full rounded-sm border border-border pl-3 pr-12 py-3 text-body-sm text-text-primary bg-bg-base focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand" />