Skip to content

Commit

Permalink
chore(example): const's should be let's
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Nov 26, 2024
1 parent 6f1477c commit c3b07df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gift_card/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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('');
Expand Down

0 comments on commit c3b07df

Please sign in to comment.