Skip to content

Commit

Permalink
fix: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Valimp committed Nov 20, 2024
1 parent 69e8917 commit 757a25b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const settings = ['Logout'];
function ResponsiveAppBar() {

const { isLoggedIn, isModerator } = useContext(LoginContext);
console.log(isLoggedIn, isModerator);
const [anchorElNav, setAnchorElNav] = useState<null | HTMLElement>(null);
const [anchorElUser, setAnchorElUser] = useState<null | HTMLElement>(null);

Expand Down Expand Up @@ -68,9 +67,6 @@ function ResponsiveAppBar() {
:
pages.filter((page) => page.showtoUsers.includes('user'));

console.log(filteredPages);


return (
<AppBar position="static" sx={{backgroundColor: '#f2e9e4'}}>
<Container maxWidth="xl">
Expand Down

0 comments on commit 757a25b

Please sign in to comment.