@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.
package/dist/index.mjs CHANGED
@@ -651,7 +651,7 @@ function ContactPage({
651
651
  const { product } = useProduct();
652
652
  const resolvedProductId = product?.id || config.productId;
653
653
  const displayName = productName ?? product?.name ?? config.productId;
654
- const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
654
+ const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
655
655
  const recaptchaRef = useRef(null);
656
656
  const [isSubmitting, setIsSubmitting] = useState(false);
657
657
  const [submitStatus, setSubmitStatus] = useState("idle");