Skip to content

Commit

Permalink
fix(temp): disable deposits on mainnet during the system upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Feb 5, 2024
1 parent 172a35f commit d984e94
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 === "sepolia");
const depositDisabled = computed(() => eraNetwork.value.key === "mainnet");
</script>

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

0 comments on commit d984e94

Please sign in to comment.