Skip to content

Commit e795a97

Browse files
authored
Merge pull request #18 from gnolang/fix/gno-address-guard
fix: gno address guard
2 parents 8fab975 + ba9c4cd commit e795a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/faucet/content/FaucetContentForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
33
<h2 class="text-500 md:text-600 mb-8 md:mb-12">{{ name }}</h2>
4-
<form class="w-full space-y-7 md:space-y-12" @submit.prevent="requestFaucet">
4+
<form class="w-full space-y-7 md:space-y-12" @submit.prevent="isAddressValid && captchaValid && requestFaucet()">
55
<Input :label="'Enter your wallet address'" :placeholder="'e.g. g1juwee0ynsdvaukvxk3j5s4cl6nn24uxwlydxrl'" v-model="bindAddress" required />
66
<Select v-if="store.selectedFaucet.amounts" :label="'Select faucet amount'" :options="options" @update="(option) => SelectAmount(option)" />
77
<Recaptcha @validation="captchaValidation" :captchakey="store.selectedFaucet.recaptcha" />

0 commit comments

Comments
 (0)