minor fix

This commit is contained in:
pavel Hamawand 2024-03-18 14:35:56 +01:00
parent 92119dd49e
commit 409d973d8a

View file

@ -1,6 +1,6 @@
import BasicWindow from "../Components/BasicWindow"; import BasicWindow from "../Components/BasicWindow";
import { ProjectListUser } from "../Components/ProjectListUser"; import { ProjectListUser } from "../Components/ProjectListUser";
import { Project } from "../Types/Project"; import { Project } from "../Types/goTypes";
function YourProjectsPage(): JSX.Element { function YourProjectsPage(): JSX.Element {
//TODO: Change so that it reads projects from database //TODO: Change so that it reads projects from database
@ -10,7 +10,6 @@ function YourProjectsPage(): JSX.Element {
id: i, id: i,
name: "Example Project " + i, name: "Example Project " + i,
description: "good", description: "good",
created: "now",
owner: "me", owner: "me",
}); });
} }