@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/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
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");
|