From 0426c9d3b097cd83c57f0760c4e3c2bd76bf6bc5 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 16 Oct 2025 21:58:08 +0200 Subject: [PATCH] fix: correct Accounts import in App.tsx - Import Accounts from 'applesauce-accounts' instead of 'applesauce-accounts/accounts' - Fixes TypeScript error TS2305 - All linter and type checks now pass --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 1a8842f5..2882f6c7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,8 +4,8 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faSpinner } from '@fortawesome/free-solid-svg-icons' import { EventStoreProvider, AccountsProvider, Hooks } from 'applesauce-react' import { EventStore } from 'applesauce-core' -import { AccountManager } from 'applesauce-accounts' -import { registerCommonAccountTypes, Accounts } from 'applesauce-accounts/accounts' +import { AccountManager, Accounts } from 'applesauce-accounts' +import { registerCommonAccountTypes } from 'applesauce-accounts/accounts' import { RelayPool } from 'applesauce-relay' import { NostrConnectSigner } from 'applesauce-signers' import { createAddressLoader } from 'applesauce-loaders/loaders'