From 623a5d30a3ab14510b2e3fce03b51b803aea9382 Mon Sep 17 00:00:00 2001 From: Dennis Dawson Date: Fri, 6 Jun 2025 12:34:16 -0700 Subject: [PATCH] Update _code-samples/nft-modular-tutorials/account-support.js Co-authored-by: Maria Shodunke --- _code-samples/nft-modular-tutorials/account-support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_code-samples/nft-modular-tutorials/account-support.js b/_code-samples/nft-modular-tutorials/account-support.js index 4621de7afc..025a1b2def 100644 --- a/_code-samples/nft-modular-tutorials/account-support.js +++ b/_code-samples/nft-modular-tutorials/account-support.js @@ -22,7 +22,7 @@ async function getAccount() { let faucetHost = null const my_wallet = (await client.fundWallet(null, { faucetHost})).wallet const newAccount = [my_wallet.address, my_wallet.seed] - return (newAccount) + return newAccount } catch (error) { console.error('===Error getting account:', error);