Remove logging

master
Bas Kloosterman 11 months ago
parent 55b333bb98
commit 76f8f4cb29
  1. 2
      dvzaservice/app/src/Connection.js
  2. 1
      dvzaservice/app/src/Registrations.js
  3. 2
      whiteboxservice/app/src/Connection.js
  4. 1
      whiteboxservice/app/src/Registrations.js

@ -40,8 +40,6 @@ const Connection = () => {
useEffect(() => {
fetch(`/api/connections/${params.connId}/${params.serviceId}`).then(x => x.json()).then(x => setService(x) )
}, [])
console.log('connection', connection)
console.log('service', service)
return (
<div>
<h1 className="t-page-header">Verbinding</h1>

@ -7,7 +7,6 @@ const App = () => {
useEffect(() => {
fetch('/api/registrations').then(x => x.json()).then(x => setRegistrations(x) )
}, [])
console.log('registrations', registrations)
return (
<div>
<h1 className="t-page-header">Registratie verzoeken</h1>

@ -40,8 +40,6 @@ const Connection = () => {
useEffect(() => {
fetch(`/api/connections/${params.connId}/${params.serviceId}`).then(x => x.json()).then(x => setService(x) )
}, [])
console.log('connection', connection)
console.log('service', service)
return (
<div>
<h1 className="t-page-header">Patiënten</h1>

@ -7,7 +7,6 @@ const App = () => {
useEffect(() => {
fetch('/api/registrations').then(x => x.json()).then(x => setRegistrations(x) )
}, [])
console.log('registrations', registrations)
return (
<div>
<h1 className="t-page-header">Registratie verzoeken</h1>

Loading…
Cancel
Save