fix security issues on react-rust-postgres sample
Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
parent
111f54d96f
commit
6f66b4a526
18636
react-rust-postgres/frontend/package-lock.json
generated
18636
react-rust-postgres/frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -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",
|
||||
|
2
react-rust-postgres/frontend/src/App.js
vendored
2
react-rust-postgres/frontend/src/App.js
vendored
@ -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 (
|
||||
|
Loading…
Reference in New Issue
Block a user