@burdenoff/website-sdk 2026.524.2 → 2026.524.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -436,7 +436,7 @@ function ContactPage({
436
436
  const { product } = useProduct();
437
437
  const resolvedProductId = product?.id || config.productId;
438
438
  const displayName = productName ?? product?.name ?? config.productId;
439
- const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
439
+ const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
440
440
  const recaptchaRef = useRef(null);
441
441
  const [isSubmitting, setIsSubmitting] = useState(false);
442
442
  const [submitStatus, setSubmitStatus] = useState("idle");