Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Nov 2, 2023
1 parent 4dd1b0b commit d35c0c8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/elements/overlay/register-panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,11 @@ export default class RegisterPanel extends LitElement {
try {
let res = await global.auth.startEmailVerification({
email: this.email.trim(),
captcha: captchaToken ? {
turnstile: { clientResponse: captchaToken }
} : null,
captcha: captchaToken
? {
turnstile: { clientResponse: captchaToken }
}
: null,
gameId: this.gameId
});

Expand Down

0 comments on commit d35c0c8

Please sign in to comment.