@burdenoff/website-sdk 2026.524.6 → 2026.524.7
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 +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
|
@@ -1580,7 +1580,7 @@ function CareersApplyForm({
|
|
|
1580
1580
|
const { product } = useProduct();
|
|
1581
1581
|
const resolvedProductId = product?.id || config.productId;
|
|
1582
1582
|
const displayName = productName ?? product?.name ?? config.productId;
|
|
1583
|
-
const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
|
|
1583
|
+
const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
|
|
1584
1584
|
const recaptchaRef = useRef(null);
|
|
1585
1585
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
1586
1586
|
const [submitted, setSubmitted] = useState(false);
|