Skip to content

Commit

Permalink
chore: don't need if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Apr 2, 2024
1 parent 1a870da commit dccaeac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib/components/ConnectButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,8 @@
$userAddress = await $translucent.wallet.address();
if ($userAddress) {
console.log('User address:', $userAddress);
console.log(await $translucent.utxosAt($userAddress));
}
console.log('User address:', $userAddress);
console.log(await $translucent.utxosAt($userAddress));
})();
}
Expand Down

0 comments on commit dccaeac

Please sign in to comment.