Skip to content

Commit

Permalink
fix header default icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Chen authored and Amy Chen committed Jun 6, 2024
1 parent a0b2432 commit 68a8e11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layout/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import Typography from "@mui/material/Typography";
import Stack from "@mui/material/Stack";
import ArrowBackIcon from "@mui/icons-material/ArrowBack";
import MoreIcon from "@mui/icons-material/MoreVert";
import SummarizeIcon from "@mui/icons-material/Summarize";
import PrintIcon from "@mui/icons-material/Print";
import DashboardIcon from "@mui/icons-material/Dashboard";
import {
getEnv,
getEnvProjectId,
Expand Down Expand Up @@ -79,7 +79,7 @@ export default function Header(props) {
const renderLogo = () => {
const projectID = getEnvProjectId();
if (!projectID)
return <SummarizeIcon fontSize="large" color="primary"></SummarizeIcon>;
return <DashboardIcon fontSize="large" color="primary"></DashboardIcon>;
else
return (
<>
Expand Down

0 comments on commit 68a8e11

Please sign in to comment.