fix security issues on react-rust-postgres sample

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours 2022-03-12 19:45:38 +01:00
parent 111f54d96f
commit 6f66b4a526
No known key found for this signature in database
3 changed files with 8225 additions and 10417 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,12 +3,12 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
"react-scripts": "^5.0.0"
},
"scripts": {
"start": "react-scripts start",

View File

@ -7,7 +7,7 @@ function App() {
useEffect(() => {
fetch("/api/users")
.then((res) => res.json())
.then((res) => setMessage(res.message))
.then((res) => setMessage(`Hello with ${res.length} users`))
.catch(console.error);
}, [setMessage]);
return (