Skip to content

Commit 6fd8164

Browse files
committed
fix formatting again, with a newer prettier version this time
1 parent 3332f89 commit 6fd8164

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default function Turnstile({
130130
inplaceState.onSuccess?.(
131131
token,
132132
preClearanceObtained,
133-
boundTurnstileObject
133+
boundTurnstileObject,
134134
);
135135
},
136136
"error-callback": (error?: any) =>
@@ -238,12 +238,12 @@ export interface TurnstileCallbacks {
238238
onSuccess?: (
239239
token: string,
240240
preClearanceObtained: boolean,
241-
boundTurnstile: BoundTurnstileObject
241+
boundTurnstile: BoundTurnstileObject,
242242
) => void;
243243
onLoad?: (widgetId: string, boundTurnstile: BoundTurnstileObject) => void;
244244
onError?: (
245245
error?: Error | any,
246-
boundTurnstile?: BoundTurnstileObject
246+
boundTurnstile?: BoundTurnstileObject,
247247
) => void;
248248
onExpire?: (token: string, boundTurnstile: BoundTurnstileObject) => void;
249249
onTimeout?: (boundTurnstile: BoundTurnstileObject) => void;

0 commit comments

Comments
 (0)