Skip to content

Commit

Permalink
improve ED mitigation logic
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed May 4, 2024
1 parent 02d59d5 commit c3f6299
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">
<template v-if="accountStore.paseoBalance > existential_deposit*10 || txStatus != ''">
Shielding your tokens means that you send them from Paseo to Incognitee where you can then transfer them
privately

Expand All @@ -17,7 +17,7 @@
</div>
</template>
<template v-else>
You don’t have enough PAS on your new account yet. Copy your address and follow the link below to obtain some PAS for free
You don’t have enough Paseo PAS on your account. Copy your address and follow the link below to obtain some PAS for free
from the Polkadot faucet.
<div class='mt-3 mb-8'>
<button @click="copyToClipboard" class="button">
Expand Down

0 comments on commit c3f6299

Please sign in to comment.