Skip to content

Commit

Permalink
Merge pull request #152 from zkLinkProtocol/fix/fix_change_network_issue
Browse files Browse the repository at this point in the history
fix change network ui issue for claim withdrawal
  • Loading branch information
leochw authored Apr 20, 2024
2 parents 5406046 + 9558725 commit a3aef17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion views/transactions/WithdrawalSubmitted.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,15 @@ const getNetworkInfo = () => {
};
const l1BlockExplorerUrls = getNetworkInfo().l1Network?.blockExplorers?.default.url;
const onboardStore = useOnboardStore();
const network = onboardStore.network;
// const network = onboardStore.network;
const transactionStatusStore = useZkSyncTransactionStatusStore();
const { eraNetwork, blockExplorerUrl } = storeToRefs(useZkSyncProviderStore());
const { connectorName } = storeToRefs(onboardStore);
const network = computed(() => {
return onboardStore.network;
})
const withdrawalManualFinalizationRequired = computed(() => {
return (
!props.transaction.info.completed &&
Expand Down

0 comments on commit a3aef17

Please sign in to comment.