chore(example): const's should be let's
This commit is contained in:
parent
6f1477cef7
commit
c3b07dfe83
|
@ -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('');
|
||||
|
|
Loading…
Reference in New Issue