From 6a3abde9d893be203408aaf4df54a55c7708d0e2 Mon Sep 17 00:00:00 2001 From: Alexander Busse <102560752+AlexanderBuzz@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:33:49 +0200 Subject: [PATCH] Update content/tutorials/build-apps/build-a-desktop-wallet-in-javascript.md Co-authored-by: Jackson Mills --- .../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 0fc3a77f92..f4b3f5a90a 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 @@ -824,7 +824,7 @@ const WALLET_DIR = 'Wallet' const createWindow = () => { ``` -Note that we have reduced the imports to one line. The helper functions that we have written before now get used in our new helper class, which not only adds new functionality but encapsulates our subscriptions and initial requests in two helper functions. Those will be used as one-liners replacing a lot of lines that started to bloat our main logic file. +Note that we have reduced the imports to one line since the new helper file imports and re-exports the other helper functions. We also added a new constant containing the directory name where we are going to store our encrypted seed.