@burdenoff/website-sdk 2026.524.2 → 2026.524.4

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.js CHANGED
@@ -676,7 +676,7 @@ function ContactPage({
676
676
  const { product } = useProduct();
677
677
  const resolvedProductId = product?.id || config.productId;
678
678
  const displayName = productName ?? product?.name ?? config.productId;
679
- const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
679
+ const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
680
680
  const recaptchaRef = React.useRef(null);
681
681
  const [isSubmitting, setIsSubmitting] = React.useState(false);
682
682
  const [submitStatus, setSubmitStatus] = React.useState("idle");