Skip to content

Commit

Permalink
fix a syntax error in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
JustLeif committed Dec 8, 2024
1 parent ff3e506 commit 3747505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/playground/src/pages/svelte/getting-started/state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function Right() {
example += ` $effect(() => {\n`;
example += `\n`;
example += ` if (BrowserWalletState.wallet) {\n`;
example += ` wallet.getChangeAddress().then(address => {\n`;
example += ` BrowserWalletState.wallet.getChangeAddress().then(address => {\n`;
example += ` console.log(address);\n`;
example += ` });\n`;
example += ` }\n`;
Expand Down

0 comments on commit 3747505

Please sign in to comment.