Skip to content

Commit

Permalink
bugfix at step 2
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed May 4, 2024
1 parent e2d6591 commit 530b08b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/CheckWalletTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class='grid grid-rows-3 grid-flow-col gap-4'>
<div class='text-4xl mt-10'>Shield PAS tokens to Incognitee</div>
<div class='text-lg'>
<template v-if="accountStore.paseoBalance > existential_deposit*10 || txStatus != ''">
<template v-if="accountStore.paseoBalance > existential_deposit*10 || (accountStore.paseoBalance > 0 && txStatus != '')">
Shielding your tokens means that you send them from Paseo to Incognitee where you can then transfer them
privately

Expand Down Expand Up @@ -46,7 +46,7 @@ import {Keyring} from "@polkadot/keyring";
import {hexToU8a} from "@polkadot/util";
const existential_deposit = 10000000000;
const txStatus = ref(null)
const txStatus = ref('')
const accountStore = useAccount()
const incogniteeStore = useIncognitee()
const emit = defineEmits(['change-tab'])
Expand Down

0 comments on commit 530b08b

Please sign in to comment.