Skip to content
Snippets Groups Projects
Commit feee4cdc authored by Sébastien Blin's avatar Sébastien Blin
Browse files

mui: fix version to avoid compilation error

New version of floating-ui breaks with:

TypeScript error in /app/jams-react-client/node_modules/@floating-ui/utils/src/types.d.ts(3,32):
Type expected.  TS1110

    1 | export type Alignment = 'start' | 'end';
    2 | export type Side = 'top' | 'right' | 'bottom' | 'left';
  > 3 | export type AlignedPlacement = `${Side}-${Alignment}`;
      |                                ^

Fixing mui's version fix CI
GitLab: #100

Change-Id: Ie517c3c99e2d1759b84d09e35650d1ac6692cd4f
parent e18d7c5c
No related branches found
No related tags found
No related merge requests found
......@@ -7,9 +7,9 @@
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"@mui/styles": "^5.13.2",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.13.6",
"@mui/styles": "5.13.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment