diff --git a/webapp/src/components/Game.jsx b/webapp/src/components/Game.jsx
index c39df49..1c6566e 100644
--- a/webapp/src/components/Game.jsx
+++ b/webapp/src/components/Game.jsx
@@ -24,7 +24,7 @@ const Game = () => {
return (
- {isAuthenticated() && (flagGameStarted || cityGameStarted) ?(
+ {isAuthenticated()? (flagGameStarted || cityGameStarted) ?(
{flagGameStarted && }
{cityGameStarted && }
@@ -41,7 +41,7 @@ const Game = () => {
Guess the city
- )}
+ ):""}
)
};