Skip to content

Commit

Permalink
fix: fix recaptcha on contact form (#136)
Browse files Browse the repository at this point in the history
INT-866

Note, the secret key needs to be updated on aws as well.
  • Loading branch information
joerivanveen authored Feb 18, 2025
1 parent ceddc19 commit 50784c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/.vuepress/theme/client/components/common/ReCaptcha.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</template>

<script lang="ts">
import {computed, defineComponent} from 'vue';
import {VueRecaptcha} from 'vue-recaptcha';
import {computed, defineComponent} from 'vue';
import {useDark} from '@vueuse/core';
export default defineComponent({
Expand All @@ -18,7 +18,7 @@ export default defineComponent({
const dark = useDark();
return {
RECAPTCHA_SITE_KEY: '6Ldfn8cfAAAAAJ-131JCFn9skW7N3k-7B0UKuHBi',
RECAPTCHA_SITE_KEY: '6Lc--NkqAAAAAE7zbUTUww4HZUSZ5b5ZIvdRKVz9',
theme: computed((): string => {
return dark.value ? 'dark' : 'light';
}),
Expand Down

0 comments on commit 50784c2

Please sign in to comment.