diff --git a/frontend/src/Components/AddProject.tsx b/frontend/src/Components/AddProject.tsx index e2ad8b9..e838d14 100644 --- a/frontend/src/Components/AddProject.tsx +++ b/frontend/src/Components/AddProject.tsx @@ -36,7 +36,7 @@ function CreateProject(props: { name: string; description: string }): void { * Provides UI for adding a project to the system. * @returns {JSX.Element} - Returns the component UI for adding a project */ -function AddProject(): JSX.Element { +function AddProject() { const [name, setName] = useState(""); const [description, setDescription] = useState(""); @@ -44,6 +44,7 @@ function AddProject(): JSX.Element {