Skip to content

Commit

Permalink
fix: silent login
Browse files Browse the repository at this point in the history
  • Loading branch information
rupato-deriv committed Feb 17, 2025
1 parent 529fc6b commit 0f4a5d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function App() {
};

React.useEffect(() => {
const accounts_list = localStorage.getItem('accountsList') || '{}';
const accounts_list = JSON.parse(localStorage.getItem('accountsList') || '{}');
const cookie_accounts = Cookies.get('client.accounts') || '{}';
const stored_accounts = JSON.parse(localStorage.getItem('clientAccounts') || '{}');

Expand Down

0 comments on commit 0f4a5d6

Please sign in to comment.