chore(example): const's should be let's

This commit is contained in:
rvcas 2024-11-25 22:58:20 -05:00
parent 6f1477cef7
commit c3b07dfe83
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@
let { data }: Props = $props();
const weld = getWeldContext();
let weld = getWeldContext();
const displayedBalance = $derived(weld.wallet.balanceAda?.toFixed(2) ?? '-');
let displayedBalance = $derived(weld.wallet.balanceAda?.toFixed(2) ?? '-');
let blockfrostAPIKey = $state('');
let tokenName = $state('');