From c32b512f96330c5ff3fb7f00cedb33fdaf9e85f0 Mon Sep 17 00:00:00 2001 From: albin-karlsson <55614148+albin-karlsson@users.noreply.github.com> Date: Fri, 22 Mar 2024 23:23:40 +0100 Subject: [PATCH] Remove unneeded comments --- client/src/components/Setup.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/Setup.jsx b/client/src/components/Setup.jsx index 316b6d9..c5943c2 100644 --- a/client/src/components/Setup.jsx +++ b/client/src/components/Setup.jsx @@ -2,10 +2,10 @@ import React, { useState } from "react"; import FoodButton from "./FoodButton"; function Setup() { - const [topic, setTopic] = useState(""); // Added state for the topic + const [topic, setTopic] = useState(""); const [selectedFoods, setSelectedFoods] = useState([]); - const [isTopicMissing, setIsTopicMissing] = useState(false); // State to track if topic is missing - const [areFoodsMissing, setAreFoodsMissing] = useState(false); // State to track if foods are missing + const [isTopicMissing, setIsTopicMissing] = useState(false); + const [areFoodsMissing, setAreFoodsMissing] = useState(false); const foods = [ "banana",