Skip to content

Commit

Permalink
Turned back on "App.jsx loading" console.log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleMcGrew committed Feb 3, 2025
1 parent 5bdb7b7 commit 2c4ae57
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ function App () {
});

useEffect(() => {
// console.log('--------- initializejQuery() ---------');
console.log('--------- App.jsx loading ---------');
initializejQuery(() => {
// console.log('--------- jQuery has been initialized ---------');
console.log('--------- jQuery has been initialized ---------');
});
return () => {
// Anything in here is fired on component unmount, equiv to componentDidUnmount()
Expand All @@ -62,7 +62,9 @@ function App () {


const isAuth = localStorage.getItem('isAuthenticated');
// console.log('======================================== isAuthenticated: " ', isAuth, ' =============================');
if (isAuth) {
console.log('======================================== isAuthenticated: " ', isAuth, ' =============================');
}

return (
<>
Expand Down

0 comments on commit 2c4ae57

Please sign in to comment.