diff --git a/frontend/src/App.js b/frontend/src/App.js
index d2164e6..211c285 100644
--- a/frontend/src/App.js
+++ b/frontend/src/App.js
@@ -100,9 +100,6 @@ function App() {
setUser(JSON.parse(localStorage.getItem(localStorageUserKey)));
}, []);
-
- console.log(activeGamenight);
-
if(user === null) {
return (
diff --git a/frontend/src/components/Gamenight.jsx b/frontend/src/components/Gamenight.jsx
index da56d99..2664163 100644
--- a/frontend/src/components/Gamenight.jsx
+++ b/frontend/src/components/Gamenight.jsx
@@ -1,7 +1,6 @@
import * as React from 'react';
function Gamenight(props) {
- console.log(props.gamenight);
let games = props.gamenight.game_list.map(g =>
(
diff --git a/frontend/src/components/Gamenights.jsx b/frontend/src/components/Gamenights.jsx
index 0f843a2..bf54a28 100644
--- a/frontend/src/components/Gamenights.jsx
+++ b/frontend/src/components/Gamenights.jsx
@@ -36,7 +36,9 @@ function Gamenights(props) {
props.onSelectGamenight(g)}>
{g.name}
{(props.user.id === g.owner_id || props.user.role === "Admin") &&
-
+
}
)