Skip to content

Commit

Permalink
fix: enable deposits
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Jun 6, 2024
1 parent db633bf commit d17c0ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pages/bridge/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ useSeoMeta({
});
const { eraNetwork } = storeToRefs(useZkSyncProviderStore());
const depositsDisabled = computed(() => eraNetwork.value.key === "mainnet");
const depositsDisabled = computed(() => false);
</script>

<style lang="scss" scoped></style>
1 change: 1 addition & 0 deletions pages/bridge/withdraw.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

<div class="mt-5 flex flex-wrap items-center justify-center gap-block-gap">
<CommonButton as="RouterLink" :to="{ name: 'assets' }" size="xs">Go to Assets page</CommonButton>
<CommonButton size="xs" as="RouterLink" :to="{ name: 'bridge' }">Bridge to {{ eraNetwork.name }}</CommonButton>
</div>
</div>
<TransferView v-else type="withdrawal" />
Expand Down

0 comments on commit d17c0ab

Please sign in to comment.