Skip to content

Commit

Permalink
fix formatting again, with a newer prettier version this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Le0Developer committed Jul 15, 2024
1 parent 3332f89 commit 6fd8164
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default function Turnstile({
inplaceState.onSuccess?.(
token,
preClearanceObtained,
boundTurnstileObject
boundTurnstileObject,
);
},
"error-callback": (error?: any) =>
Expand Down Expand Up @@ -238,12 +238,12 @@ export interface TurnstileCallbacks {
onSuccess?: (
token: string,
preClearanceObtained: boolean,
boundTurnstile: BoundTurnstileObject
boundTurnstile: BoundTurnstileObject,
) => void;
onLoad?: (widgetId: string, boundTurnstile: BoundTurnstileObject) => void;
onError?: (
error?: Error | any,
boundTurnstile?: BoundTurnstileObject
boundTurnstile?: BoundTurnstileObject,
) => void;
onExpire?: (token: string, boundTurnstile: BoundTurnstileObject) => void;
onTimeout?: (boundTurnstile: BoundTurnstileObject) => void;
Expand Down

0 comments on commit 6fd8164

Please sign in to comment.