Skip to content

Commit 887ea53

Browse files
authored
Merge pull request #11 from gnolang/fix/remove-tx-link
fix: remove tx link
2 parents 2756949 + 2514015 commit 887ea53

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

src/components/faucet/content/FaucetContentSuccess.vue

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@
22
<div class="flex flex-col items-center justify-center text-center">
33
<h2 class="text-500 mt-8">Faucet request successful</h2>
44
<div class="js-faucetsuccessdetail h-0 overflow-hidden">
5-
<p class="font-light text-grey-100 mt-6">
6-
You can now check your faucet balance.<br /><a
7-
class="text-light underline hover:text-grey-100 transition-colors ease-in-out"
8-
:href="txLink"
9-
v-if="txLink"
10-
>Transaction on GnoScan</a
11-
>.
12-
</p>
5+
<p class="font-light text-grey-100 mt-6">You can now check your faucet balance.</p>
136

147
<Button text="Done" class="w-full mt-12" @click.prevent="() => $emit('doneFaucet')" />
158
</div>
@@ -20,7 +13,7 @@
2013
import Button from '@/components/ui/Button.vue'
2114
2215
interface Props {
23-
txLink?: string
16+
txLink?: string // TODO: add link
2417
}
2518
2619
defineProps<Props>()

0 commit comments

Comments
 (0)