minor fix
This commit is contained in:
parent
92119dd49e
commit
409d973d8a
1 changed files with 1 additions and 2 deletions
|
@ -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",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue