@burdenoff/website-sdk 2026.524.6 → 2026.524.8
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.js
CHANGED
|
@@ -1605,7 +1605,7 @@ function CareersApplyForm({
|
|
|
1605
1605
|
const { product } = useProduct();
|
|
1606
1606
|
const resolvedProductId = product?.id || config.productId;
|
|
1607
1607
|
const displayName = productName ?? product?.name ?? config.productId;
|
|
1608
|
-
const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
|
|
1608
|
+
const effectiveRecaptchaSiteKey = recaptchaSiteKey ?? product?.recaptchaSiteKey ?? config.recaptchaSiteKey ?? "";
|
|
1609
1609
|
const recaptchaRef = React.useRef(null);
|
|
1610
1610
|
const [isSubmitting, setIsSubmitting] = React.useState(false);
|
|
1611
1611
|
const [submitted, setSubmitted] = React.useState(false);
|