Skip to content

Commit 6e9499e

Browse files
committed
fix lether button and text in the loading page
1 parent f9a6661 commit 6e9499e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Loading

src/common/components/exchange/ConnectDevice.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="transactions">
33
<v-col offset="2" cols="8">
4-
<v-row v-if="isLiqualityWallet" justify="center" class="mx-0 mb-1">
4+
<v-row v-if="isSftwWallet" justify="center" class="mx-0 mb-1">
55
<h1>Enable {{ walletName }} wallet</h1>
66
</v-row>
77
<v-row v-else justify="center" class="mx-0 mb-1">
@@ -17,11 +17,11 @@
1717
<div class="number">1</div>
1818
</v-col>
1919
<v-col cols="11">
20-
<p v-if="isLiqualityWallet"
20+
<p v-if="isSftwWallet"
2121
class="ma-0">
22-
Make sure Liquality is installed and enabled in your browser.
22+
Make sure {{ walletName }} is installed and enabled in your browser.
2323
</p>
24-
<p v-if="!isLiqualityWallet"
24+
<p v-if="isHdWallet"
2525
class="ma-0">
2626
Plug your {{ walletName }} device into your computer
2727
</p>
@@ -34,7 +34,7 @@
3434
<v-col v-if="isHdWallet" cols="11">
3535
<p class="ma-0">Insert {{ walletName }} device PIN code</p>
3636
</v-col>
37-
<v-col v-if="needsUnlock" cols="11">
37+
<v-col v-if="isSftwWallet" cols="11">
3838
<p class="ma-0">Unlock your wallet.</p>
3939
</v-col>
4040
</v-row>
@@ -102,7 +102,7 @@ export default defineComponent({
102102
const bitcoinWallet = useStateAttribute('pegInTx', 'bitcoinWallet');
103103
const walletName = useGetter<string>('pegInTx', constants.WALLET_NAME);
104104
const isHdWallet = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_HD_WALLET);
105-
const needsUnlock = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_SF_WALLET);
105+
const isSftwWallet = useGetter<boolean>('pegInTx', constants.PEGIN_TX_IS_SF_WALLET);
106106
const clearStore = useAction('pegInTx', constants.PEGIN_TX_CLEAR_STATE);
107107
108108
const deviceImagePath = computed(() => {
@@ -155,7 +155,7 @@ export default defineComponent({
155155
environmentContext,
156156
walletName,
157157
isHdWallet,
158-
needsUnlock,
158+
isSftwWallet,
159159
clearStore,
160160
deviceImagePath,
161161
isLedgerWallet,

0 commit comments

Comments
 (0)