Skip to content

Commit 0ee1777

Browse files
chore(clerk-js): Add Turnstile retry for all 300xxx error codes (clerk#2738)
* chore(clerk-js): Add Turnstile retry for all 300xxx error codes * chore(clerk-js): Add changeset --------- Co-authored-by: panteliselef <panteliselef@outlook.com>
1 parent c2b9827 commit 0ee1777

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.changeset/many-bottles-watch.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@clerk/clerk-js": patch
3+
---
4+
5+
Allow retries for all 300xxx error codes for CF Turnstile.

packages/clerk-js/src/utils/__tests__/captcha.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('shouldRetryTurnstileErrorCode', () => {
1111
['104xxx', true],
1212
['106xxx', true],
1313
['110600', true],
14-
['300100', true],
14+
['300xxx', true],
1515
['600xxx', true],
1616
['200010', false],
1717
['100405', false],

packages/clerk-js/src/utils/captcha.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ declare global {
5353
const WIDGET_CLASSNAME = 'clerk-captcha';
5454

5555
export const shouldRetryTurnstileErrorCode = (errorCode: string) => {
56-
const codesWithRetries = ['crashed', 'undefined_error', '102', '103', '104', '106', '110600', '300100', '600'];
56+
const codesWithRetries = ['crashed', 'undefined_error', '102', '103', '104', '106', '110600', '300', '600'];
5757

5858
return !!codesWithRetries.find(w => errorCode.startsWith(w));
5959
};

0 commit comments

Comments
 (0)