Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Jul 30, 2024
1 parent edf5536 commit 8a6fdcb
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Close from "@mui/icons-material/Close";
import Done from "@mui/icons-material/Done";
import Help from "@mui/icons-material/Help";
import NotInterested from "@mui/icons-material/NotInterested";
import Warning from "@mui/icons-material/Warning";
import WarningAmber from "@mui/icons-material/WarningAmber";
import Box from "@mui/material/Box";
import Button from "@mui/material/Button";
import Collapse from "@mui/material/Collapse";
Expand Down Expand Up @@ -262,7 +262,7 @@ export const ValidationChecks = (props: {
const Icon: Record<ValidationCheck["status"], React.ReactElement> = {
Pass: <Done color="success" />,
Fail: <Close color="error" />,
Warn: <Warning color="warning" />,
Warn: <WarningAmber color="warning" />,
"Not applicable": <NotInterested color="disabled" />,
};

Expand Down Expand Up @@ -293,6 +293,7 @@ export const ValidationChecks = (props: {
sx={{
backgroundColor: (theme) => theme.palette.background.default,
border: (theme) => `1px solid ${theme.palette.border.light}`,
marginTop: "-1px", // eliminate double borders
}}
>
<ListItemIcon sx={{ minWidth: (theme) => theme.spacing(4) }}>
Expand Down

0 comments on commit 8a6fdcb

Please sign in to comment.