Skip to content

Commit

Permalink
fix: disable deposits only on goerli
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Jan 29, 2024
1 parent db8e3df commit 0e2a317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import DepositView from "@/views/transactions/Deposit.vue";
const { destinations } = storeToRefs(useDestinationsStore());
const { eraNetwork } = storeToRefs(useZkSyncProviderStore());
const depositDisabled = computed(() => eraNetwork.value.key === "mainnet");
const depositDisabled = computed(() => eraNetwork.value.key === "goerli");
</script>

<style lang="scss" scoped></style>

0 comments on commit 0e2a317

Please sign in to comment.