Skip to content

Commit

Permalink
chore: update mui
Browse files Browse the repository at this point in the history
  • Loading branch information
AKharytonchyk committed Nov 5, 2024
1 parent c9b5103 commit 77f8a47
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 73 deletions.
138 changes: 72 additions & 66 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@octokit/rest": "^21.0.2",
"@tanstack/react-query": "^5.28.9",
"@testing-library/jest-dom": "^5.17.0",
Expand Down
10 changes: 5 additions & 5 deletions src/components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ConfigContext } from "../App";
import { PullRequest } from "../models/PullRequest";
import PullRequestCard from "./PullRequestCard";
import { Box } from "@mui/material";
import Grid2 from "@mui/material/Unstable_Grid2/Grid2";
import Grid from "@mui/material/Grid2";
import LandingPage from "../pages/LandingPage";
import { MultiselectFilter } from "./MultiselectFilter";
import { InputFilter } from "./InputFilter";
Expand Down Expand Up @@ -110,16 +110,16 @@ export const Dashboard: React.FC = () => {
onChange={setExcludeLabels}
/>
</Box>
<Grid2 container spacing={2}>
<Grid container spacing={2}>
{filteredPulls.map(
(pull) =>
pull && (
<Grid2 key={pull.id} xl={6} xs={12}>
<Grid key={pull.id} size={{xl: 6, xs:12 }}>
<PullRequestCard pr={pull as unknown as PullRequest} />
</Grid2>
</Grid>
)
)}
</Grid2>
</Grid>
</>
)}
</Box>
Expand Down

0 comments on commit 77f8a47

Please sign in to comment.