From 396e5297c2b2bf17b13b11a292ec9a17f26d4cfc Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Sun, 20 Apr 2025 16:05:48 +0200 Subject: [PATCH] Fix missing bracket --- src/App.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 1c6913a..3ad6fe2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -289,7 +289,6 @@ export const isMainWindow = true; function App() { const [extState, setExtstate] = useState('not-authenticated'); const [desktopViewMode, setDesktopViewMode] = useState('home'); - const [backupjson, setBackupjson] = useState(null); const [rawWallet, setRawWallet] = useState(null); const [ltcBalanceLoading, setLtcBalanceLoading] = useState(false); @@ -2018,7 +2017,7 @@ function App() { setIsOpenDrawerProfile={setIsOpenDrawerProfile} userInfo={userInfo} /> - renderProfile() + {renderProfile()} )}