@burdenoff/website-sdk 2026.524.8 → 2026.524.9

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.mjs CHANGED
@@ -2394,14 +2394,25 @@ function NewsletterForm({
2394
2394
  background: rgba(0,0,0,0.3) !important;
2395
2395
  }
2396
2396
  ` }),
2397
- /* @__PURE__ */ jsx("div", { style: { position: "relative", zIndex: 50 }, children: /* @__PURE__ */ jsx(
2398
- ReCAPTCHA3,
2397
+ /* @__PURE__ */ jsx(
2398
+ "div",
2399
2399
  {
2400
- ref: recaptchaRef,
2401
- sitekey: effectiveRecaptchaSiteKey,
2402
- size: "compact"
2400
+ style: {
2401
+ position: "relative",
2402
+ zIndex: 50,
2403
+ display: "flex",
2404
+ justifyContent: "flex-start"
2405
+ },
2406
+ children: /* @__PURE__ */ jsx(
2407
+ ReCAPTCHA3,
2408
+ {
2409
+ ref: recaptchaRef,
2410
+ sitekey: effectiveRecaptchaSiteKey,
2411
+ size: "normal"
2412
+ }
2413
+ )
2403
2414
  }
2404
- ) })
2415
+ )
2405
2416
  ] }),
2406
2417
  effectiveRecaptchaSiteKey && /* @__PURE__ */ jsx(Button, { type: "submit", disabled: isLoading, className: "w-full", children: isLoading ? "Subscribing..." : buttonText })
2407
2418
  ]