Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
remove local storage setter
  • Loading branch information
trpubz authored Feb 10, 2024
1 parent c0787f1 commit 80b0a28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const App = () => {
// Hardcoded user, will pull from getUser endpoint soon
const userName = "Powdered Toast Man";
const email = "[email protected]"
localStorage.setItem('email', '[email protected]');

const { totalIncomeData } = useGetIncomes(email);
const { totalExpensesData } = useGetExpenses(email);
Expand Down Expand Up @@ -58,4 +57,4 @@ const App = () => {
)
}

export default App;
export default App;

0 comments on commit 80b0a28

Please sign in to comment.