@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/components/contact.js +1 -1
- package/dist/components/contact.js.map +1 -1
- package/dist/components/contact.mjs +1 -1
- package/dist/components/contact.mjs.map +1 -1
- package/dist/components/partners.js +1 -1
- package/dist/components/partners.js.map +1 -1
- package/dist/components/partners.mjs +1 -1
- package/dist/components/partners.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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");
|