chore(example): const's should be let's
This commit is contained in:
@@ -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('');
|
||||
|
||||
Reference in New Issue
Block a user