From 96178e8fd202be5cb47435fea83ff7834518202d Mon Sep 17 00:00:00 2001 From: Ian Cameron Date: Tue, 5 Oct 2021 10:06:12 -0700 Subject: [PATCH] chore: changed variable name --- src/components/Recaptcha.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Recaptcha.vue b/src/components/Recaptcha.vue index 5995c2f..86ca54a 100644 --- a/src/components/Recaptcha.vue +++ b/src/components/Recaptcha.vue @@ -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;