Skip to content

Commit

Permalink
chore: changed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Cameron committed Oct 5, 2021
1 parent bc78c98 commit 96178e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Recaptcha.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export default {
nonce: this.nonce,
token: response,
})
.then((response) => {
const isValid = response.data.valid;
const token = response.data.jwt;
.then((res) => {
const isValid = res.data.valid;
const token = res.data.jwt;
this.isInputValid = isValid;
this.isLoadingRecaptchaVerification = false;
Expand Down

0 comments on commit 96178e8

Please sign in to comment.