🐛(app-desk) fix fetchPriority warning

The upgrade to react@18.3.1 has a compatibility
issue with next@14.2.3. It creates a error warning
about the fetchPriority prop. This commit fixes the
issue by downgrading react to 18.2.0 as it was
before the last upgrade.
This commit is contained in:
Anthony LC
2024-05-14 12:01:51 +02:00
committed by Anthony LC
parent e2e34a011d
commit d23426679a
2 changed files with 12 additions and 12 deletions

View File

@@ -26,8 +26,8 @@
"resolutions": {
"@types/node": "20.12.11",
"@types/react-dom": "18.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.5"
}
}