diff --git a/frontend/src/Components/DisplayUserProjects.tsx b/frontend/src/Components/DisplayUserProjects.tsx
index 266f1ce..f4fd782 100644
--- a/frontend/src/Components/DisplayUserProjects.tsx
+++ b/frontend/src/Components/DisplayUserProjects.tsx
@@ -3,6 +3,10 @@ import { Project } from "../Types/goTypes";
 import { Link } from "react-router-dom";
 import { api } from "../API/API";
 
+/**
+ * Renders a component that displays the projects a user is a part of and links to the projects start-page.
+ * @returns The JSX element representing the component.
+ */
 function DisplayUserProject(): JSX.Element {
   const [projects, setProjects] = useState<Project[]>([]);
 
@@ -16,6 +20,7 @@ function DisplayUserProject(): JSX.Element {
       console.error(response.message);
     }
   };
+
   // Call getProjects when the component mounts
   useEffect(() => {
     void getProjects();