From feee4cdc0890d67296d46d584b02f4a6f0ff80df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Tue, 5 Sep 2023 14:23:08 -0400 Subject: [PATCH] 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 --- jams-react-client/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jams-react-client/package.json b/jams-react-client/package.json index c252de3e..92e18ea0 100644 --- a/jams-react-client/package.json +++ b/jams-react-client/package.json @@ -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", -- GitLab