From 27de16979e1a248c564a4db141f85d27dcd806a3 Mon Sep 17 00:00:00 2001 From: AlexanderBuzz <102560752+AlexanderBuzz@users.noreply.github.com> Date: Thu, 13 Jul 2023 09:06:25 +0200 Subject: [PATCH] Fixed typo in tutorial file reference --- .../build-apps/build-a-desktop-wallet-in-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md index ddd21e65f9..c87ea2a746 100644 --- a/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md +++ b/content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md @@ -660,7 +660,7 @@ At this point, our wallet shows the account's balance getting updated, but doesn {{ include_code("_code-samples/build-a-wallet/desktop-js/library/4_helpers.js", language="js") }} -2. Now, in `index.html`, require the new helper function at the bottom of the import section like so: +2. Now, in `index.js`, require the new helper function at the bottom of the import section like so: 3. ```javascript const { prepareReserve, prepareAccountData, prepareLedgerData} = require('./library/3_helpers')