Skip to content

Commit 1e2cfa8

Browse files
authored
Fix some vue warnings (#606)
* Fix some vue warnings * Prettier
1 parent 6d22405 commit 1e2cfa8

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

scripts/composables/use_wallet.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@ function addWallet(wallet) {
4545
await wallet.setMasterKey({ mk, extsk });
4646
await updateWallet();
4747
};
48-
watch(wallet, async () => {
49-
await updateWallet();
50-
});
5148

5249
const setExtsk = async (extsk) => {
5350
await wallet.setExtsk(extsk);

scripts/dashboard/Dashboard.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,11 +1078,7 @@ defineExpose({
10781078
class="col-12 p-0 mb-2"
10791079
/>
10801080
<WalletButtons class="col-12 p-0 md-5" />
1081-
<Activity
1082-
class="col-12 p-0 mb-5"
1083-
title="Activity"
1084-
:rewards="false"
1085-
/>
1081+
<Activity title="Activity" :rewards="false" />
10861082
</div>
10871083
</div>
10881084
</div>

0 commit comments

Comments
 (0)