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