Browse Source

change position of fetch balance

feature/buyorders
Phillip Lang Martinez 2 months ago
parent
commit
5d745f734d
  1. 7
      src/App.tsx

7
src/App.tsx

@ -443,7 +443,6 @@ function App() {
}
});
getBalanceFunc();
getLtcBalanceFunc()
} catch (error) { }
}, [address]);
@ -453,6 +452,12 @@ function App() {
};
}, []);
useEffect(()=> {
if(authenticatedMode === 'ltc' && !ltcBalanceLoading && ltcBalance === null ){
getLtcBalanceFunc()
}
}, [authenticatedMode])
const confirmPasswordToDownload = async () => {
try {
setWalletToBeDownloadedError("");

Loading…
Cancel
Save