Skip to content

Commit d786eaf

Browse files
committed
Fix faucet
1 parent 7491514 commit d786eaf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pages/faucet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const isLoading = ref(false)
7272
const address = ref("")
7373
const account = ref()
7474
const networks = ["Mocha", "Arabica", "Mammoth"]
75-
const network = ref(networks.find(n => n === getNetworkName()) || networks[0].toLowerCase())
75+
const network = ref((networks.find(n => n === getNetworkName()) || networks[0]).toLowerCase())
7676
7777
const isNetworkSelectorOpen = ref(false)
7878
const fetchAccount = async() => {

0 commit comments

Comments
 (0)