Skip to content

Commit

Permalink
#801: updated mui dependencies to latest versions. Fixed Dropdown com…
Browse files Browse the repository at this point in the history
…ponents use of SelectProps to now use BaseSelectProps as mui changed the name in an earlier version, causing the build break
  • Loading branch information
aaronreed708 committed Apr 11, 2024
1 parent 7346b3c commit b261ae7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions code/src/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@finos/a11y-theme-builder-sdk": "^1.0.0",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@mui/x-data-grid": "^6.12.0",
"@mui/system": "^5.11.9",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/x-data-grid": "^7.1.1",
"@mui/system": "^5.15.15",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
Expand Down
4 changes: 2 additions & 2 deletions code/src/ui/src/mui-a11y-tb/components/Dropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { ReactNode, useEffect, useState } from 'react';
import { Select, SelectProps } from '@mui/material';
import { Select, BaseSelectProps } from '@mui/material';

interface Props extends SelectProps {
interface Props extends BaseSelectProps {
children?: ReactNode
}

Expand Down

0 comments on commit b261ae7

Please sign in to comment.