Skip to content

Commit a5761da

Browse files
committed
removes console log from app.tsx
1 parent cdd3024 commit a5761da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/components/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const App = (): JSX.Element => {
1818
// const [state, dispatch] = useReducer(reducer, initialState);
1919
const state = useSelector(store => store.appState);
2020
const dispatch = useDispatch();
21-
console.log("loaded right away")
21+
2222
// checks if user is signed in as guest or actual user and changes loggedIn boolean accordingly
2323
useEffect(()=>{
2424
if (window.localStorage.getItem('ssid') !== 'guest') {

0 commit comments

Comments
 (0)