Skip to content
Draft
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
93d47ce
Setup config for passive hybrid mode
thiessenp-cds Apr 14, 2025
7ac402d
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Apr 15, 2025
e1c241b
Adds some more logs
thiessenp-cds Apr 15, 2025
4a9e7e1
Trying something
thiessenp-cds Apr 15, 2025
6918d25
Resetting
thiessenp-cds Apr 15, 2025
4cd0863
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Apr 24, 2025
0e4d68d
Testing
thiessenp-cds Apr 24, 2025
fd1774c
test 2
thiessenp-cds Apr 24, 2025
2354ce5
test
thiessenp-cds Apr 24, 2025
dad2e5c
test
thiessenp-cds Apr 24, 2025
22a9b14
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds May 2, 2025
178e2a7
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds May 9, 2025
f69455e
Adds debugging info
thiessenp-cds May 9, 2025
7f60b53
Trying something else
thiessenp-cds May 9, 2025
9239f30
Removes comented out code
thiessenp-cds May 9, 2025
f95d6f2
Removes old log message
thiessenp-cds May 9, 2025
741868f
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds May 12, 2025
cdf9c77
Increases hCAPTCHA suspicious threshold
thiessenp-cds May 13, 2025
315e34c
Undoes temp work
thiessenp-cds May 27, 2025
81e886d
Undoes more temp changes
thiessenp-cds May 27, 2025
7b98b1e
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds May 27, 2025
a05aa88
Makes sus score a little more accomodating
thiessenp-cds May 27, 2025
2901dea
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Jun 9, 2025
90cdd78
reverting old changes
thiessenp-cds Jul 2, 2025
bb136dd
Merge remote-tracking branch 'origin/main' into test/hcaptcha-challen…
thiessenp-cds Jul 2, 2025
7665801
update to use a11y test hCaptcha key
thiessenp-cds Jul 2, 2025
41d14f2
update to use latest
thiessenp-cds Jul 2, 2025
6f76e73
remove line break
thiessenp-cds Jul 2, 2025
15dcda2
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Jul 14, 2025
ba16409
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Jul 16, 2025
667950f
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Jul 21, 2025
bd99325
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Jul 29, 2025
5481ba9
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Aug 12, 2025
c3fc7c9
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Aug 25, 2025
760fd1d
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Sep 11, 2025
57d835d
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Sep 18, 2025
8f56404
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Oct 8, 2025
8163878
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Oct 22, 2025
987a631
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Nov 14, 2025
d499112
Merge branch 'main' into test/hcaptcha-challenge-2
thiessenp-cds Nov 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ export const FormCaptcha = ({
const { getFlag } = useFeatureFlags();
const hCaptcha = getFlag("hCaptcha");

const HCAPTCHA_SITE_KEY = "72924bde-40f6-4f84-b86a-85ca705ce0c6";

if (
process.env.NODE_ENV === "development" &&
hCaptcha &&
!process.env.NEXT_PUBLIC_HCAPTCHA_SITE_KEY
// !process.env.NEXT_PUBLIC_HCAPTCHA_SITE_KEY
!HCAPTCHA_SITE_KEY
) {
logMessage.warn(`hCaptcha: flag is enabled but hCaptchaSiteKey is missing. This will cause
hCaptcha to fail. Add the hCaptchaSiteKey to the App settings and make sure the
Expand Down Expand Up @@ -73,7 +76,8 @@ export const FormCaptcha = ({
{children}
{doHCaptchaFlow && (
<HCaptcha
sitekey={process.env.NEXT_PUBLIC_HCAPTCHA_SITE_KEY || ""}
// sitekey={process.env.NEXT_PUBLIC_HCAPTCHA_SITE_KEY || ""}
sitekey={HCAPTCHA_SITE_KEY || ""}
onVerify={onVerified}
// Component will reset immediately after a Client sends bad data.
// Note: An invalid sitekey will cause the HCaptcha component to fail without calling onError
Expand Down
Loading