fix: correct MUI icon usage in Header and NotFoundPublic

- Header.tsx: Use <MenuIcon /> instead of <Menu /> component
- NotFoundPublic.tsx: Use <ErrorOutlineIcon /> instead of <ErrorOutline />

Resolves: Menu open prop error and ErrorOutline undefined error
This commit is contained in:
Agent Zero 2026-02-26 07:38:05 +00:00
parent 856816c36a
commit 51c0bfaeaf
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ const Header: React.FC = () => {
}
}}
>
<Menu />
<MenuIcon />
</IconButton>
<Menu

View File

@ -25,7 +25,7 @@ function NotFoundPublic() {
gap: 3
}}
>
<ErrorOutline sx={{ fontSize: 60, color: theme.palette.error.main }} />
<ErrorOutlineIcon sx={{ fontSize: 60, color: theme.palette.error.main }} />
<Typography variant="h2" component="h1" gutterBottom>
404
</Typography>